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

27 lines
516 B
Nix
Raw Normal View History

2023-02-17 00:41:22 +01:00
{ pkgs, lib, ... }:
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-02-17 00:59:29 +01:00
./xorg
2023-02-17 00:41:22 +01:00
./home-manager
2023-02-17 00:59:29 +01:00
./browser.nix
2023-02-17 11:45:09 +01:00
./suspend.nix
./pass.nix
2023-06-01 12:08:59 +02:00
./audio.nix
2023-06-02 14:08:07 +02:00
./kmonad.nix
2023-06-10 20:57:07 +02:00
./taskwarrior.nix
./fonts.nix
2023-08-23 10:02:42 +02:00
./noti.nix
2023-08-24 14:25:59 +02:00
./vscode.nix
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
};
2023-02-17 00:41:22 +01:00
}