2023-08-20 04:25:58 -06:00
|
|
|
{ config, lib, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./android.nix
|
|
|
|
./base.nix
|
2023-08-22 13:08:31 -06:00
|
|
|
./cache.nix
|
2023-08-20 04:25:58 -06:00
|
|
|
./code.nix
|
|
|
|
./desktop.nix
|
|
|
|
./environment.nix
|
|
|
|
./essential.nix
|
|
|
|
./extra.nix
|
|
|
|
./games.nix
|
|
|
|
./git-sync.nix
|
|
|
|
./internet-computer.nix
|
|
|
|
./keybase.nix
|
|
|
|
./nix.nix
|
|
|
|
./nixified.ai.nix
|
2023-08-22 13:30:32 -06:00
|
|
|
./options.nix
|
2023-08-22 15:48:29 -06:00
|
|
|
./secrets.nix
|
2023-08-20 04:25:58 -06:00
|
|
|
./ssh.nix
|
|
|
|
./syncthing.nix
|
|
|
|
./users.nix
|
|
|
|
./wsl.nix
|
|
|
|
./xmonad.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
options = {
|
|
|
|
features.full.enable = lib.mkEnableOption "Do everything";
|
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkIf config.features.full.enable {
|
|
|
|
modules.base.enable = true;
|
|
|
|
modules.desktop.enable = true;
|
|
|
|
modules.xmonad.enable = true;
|
|
|
|
modules.extra.enable = true;
|
|
|
|
modules.code.enable = true;
|
|
|
|
modules.games.enable = true;
|
|
|
|
modules.syncthing.enable = true;
|
|
|
|
modules.fonts.enable = true;
|
|
|
|
modules.nixified-ai.enable = true;
|
|
|
|
};
|
|
|
|
}
|