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

26 lines
544 B
Nix

{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
inputs.nixos-hardware.nixosModules.dell-xps-13-9310
./hardware-configuration.nix
# ../disko/nvme.nix
../workstation
../workstation/kvm.nix
../workstation/games
../wm
../../home/work
];
networking.hostName = "loki";
roles = {
citrix.enable = true;
zoom.enable = true;
gui.enable = true;
kvm.enable = true;
games.enable = true;
};
wm = {
sway.enable = true;
kde.enable = false;
# cosmic.enable = false;
};
}