NixOS-Configs/hosts/dragon/default.nix
2024-12-24 19:26:56 -06:00

28 lines
684 B
Nix

{ inputs, config, pkgs, ... }: {
imports = [
./hardware-configuration.nix
inputs.nixos-hardware.nixosModules.common-cpu-intel
inputs.nixos-hardware.nixosModules.common-gpu-intel
inputs.nixos-hardware.nixosModules.common-pc-laptop
inputs.nixos-hardware.nixosModules.common-pc-laptop-ssd
../workstation
../workstation/kvm.nix
../workstation/games
../wm
../../home/work
];
networking.hostName = "dragon";
roles = {
citrix.enable = false;
zoom.enable = false;
gui.enable = true;
kvm.enable = false;
games.enable = false;
};
wm = {
sway.enable = true;
kde.enable = false;
# cosmic.enable = false;
};
}