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

21 lines
413 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-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
}