NixOS-Configs/hosts/loki/default.nix
2025-04-26 18:07:11 -05:00

32 lines
742 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
../../home/gui/gnome-calenar.nix
];
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;
};
}