NixOS-Configs/hosts/dragon/default.nix
2025-06-25 21:41:22 -05:00

33 lines
828 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
../../home/gui/gnome-calenar.nix
];
networking.hostName = "dragon";
roles = {
citrix.enable = false;
zoom.enable = false;
gui.enable = true;
kmscon.enable = true;
kvm.enable = true;
games.enable = true;
wine.enable = false;
tlp.enable = true;
gnome-calendar.enable = false;
};
wm = {
sway.enable = true;
kde.enable = false;
# cosmic.enable = false;
};
}