NixOS-Configs/hosts/dragon/default.nix

29 lines
740 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
];
networking.hostName = "dragon";
variables.swayScale = "1.0";
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;
};
}