2023-08-20 04:25:58 -06:00
|
|
|
{ config, lib, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./android.nix
|
|
|
|
./base.nix
|
2023-08-22 17:11:37 -06:00
|
|
|
./cache-server.nix
|
2023-11-17 15:20:44 -07: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
|
2023-09-24 22:45:43 -06:00
|
|
|
./gitea-runner.nix
|
2023-11-17 15:20:44 -07:00
|
|
|
./gitea.nix
|
|
|
|
./gnome.nix
|
2023-11-17 18:43:04 -07:00
|
|
|
./electron.nix
|
2023-08-22 16:35:21 -06:00
|
|
|
./imalison.nix
|
2023-08-20 04:25:58 -06:00
|
|
|
./internet-computer.nix
|
2023-08-22 16:35:21 -06:00
|
|
|
./kat.nix
|
2023-08-20 04:25:58 -06:00
|
|
|
./keybase.nix
|
|
|
|
./nix.nix
|
|
|
|
./nixified.ai.nix
|
2023-08-22 13:30:32 -06:00
|
|
|
./options.nix
|
2023-11-17 15:20:44 -07:00
|
|
|
./plasma.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
|
2023-12-21 16:01:34 -07:00
|
|
|
./user-specific.nix
|
2023-12-13 11:30:46 -07:00
|
|
|
./vscode.nix
|
2023-08-20 04:25:58 -06:00
|
|
|
./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;
|
2023-11-17 15:20:44 -07:00
|
|
|
modules.plasma.enable = true;
|
|
|
|
modules.gnome.enable = false;
|
2023-08-20 04:25:58 -06:00
|
|
|
modules.xmonad.enable = true;
|
|
|
|
modules.extra.enable = true;
|
2023-11-17 18:43:04 -07:00
|
|
|
modules.electron.enable = true;
|
2023-08-20 04:25:58 -06:00
|
|
|
modules.code.enable = true;
|
|
|
|
modules.games.enable = true;
|
|
|
|
modules.syncthing.enable = true;
|
|
|
|
modules.fonts.enable = true;
|
2023-11-17 15:20:44 -07:00
|
|
|
modules.nixified-ai.enable = false;
|
2023-08-20 04:25:58 -06:00
|
|
|
};
|
|
|
|
}
|