nixos-config/nixos/components/gui/default.nix

30 lines
597 B
Nix
Raw Normal View History

{ pkgs, lib, config, ... }:
2023-02-17 00:41:22 +01:00
with lib;
{
options.components.gui = {
enable = lib.mkEnableOption "GUI configurations";
};
imports = [
2023-02-17 11:45:09 +01:00
# todo : structure with home-manager and such is not cool, create another structure
2023-06-01 12:08:59 +02:00
./audio.nix
./browser.nix
2024-03-03 14:56:49 +01:00
./cups.nix
./fonts.nix
./home-manager
./kmonad.nix
2023-08-23 10:02:42 +02:00
./noti.nix
./pass.nix
./steam.nix
./suspend.nix
./taskwarrior.nix
2023-08-24 14:25:59 +02:00
./vscode.nix
./xorg
2023-02-17 00:41:22 +01:00
];
2023-02-17 00:59:29 +01:00
config = mkIf config.components.gui.enable {
# todo extract xorg stuff to prepare wayland
environment.enableAllTerminfo = true;
2023-02-17 00:59:29 +01:00
};
2023-02-17 00:41:22 +01:00
}