54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{ config, lib, ... }:
|
|
{
|
|
imports = [
|
|
./android.nix
|
|
./base.nix
|
|
./cache-server.nix
|
|
./cache.nix
|
|
./code.nix
|
|
./desktop.nix
|
|
./environment.nix
|
|
./essential.nix
|
|
./extra.nix
|
|
./games.nix
|
|
./git-sync.nix
|
|
./gitea-runner.nix
|
|
./gitea.nix
|
|
./gnome.nix
|
|
./electron.nix
|
|
./imalison.nix
|
|
./internet-computer.nix
|
|
./kat.nix
|
|
./keybase.nix
|
|
./nix.nix
|
|
./nixified.ai.nix
|
|
./options.nix
|
|
./plasma.nix
|
|
./secrets.nix
|
|
./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.plasma.enable = true;
|
|
modules.gnome.enable = false;
|
|
modules.xmonad.enable = true;
|
|
modules.extra.enable = true;
|
|
modules.electron.enable = true;
|
|
modules.code.enable = true;
|
|
modules.games.enable = true;
|
|
modules.syncthing.enable = true;
|
|
modules.fonts.enable = true;
|
|
modules.nixified-ai.enable = false;
|
|
};
|
|
}
|