NixOS-Configs/hosts/loki/default.nix
2025-04-26 15:38:37 -05:00

31 lines
705 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";
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
roles = {
citrix.enable = true;
zoom.enable = true;
gui.enable = true;
kmscon.enable = true;
kvm.enable = true;
games.enable = true;
wine.enable = false;
tlp.enable = true;
gnome-calendar.enable = true;
};
wm = {
sway.enable = true;
kde.enable = false;
# cosmic.enable = false;
};
}