Files
nixos/hosts/minoxy-workstation/configuration.nix

32 lines
620 B
Nix

{ ... }:
{
imports = [
./hardware-configuration.nix
./../../user/users.nix
./../../modules/common.nix
./../../modules/hardware/xremap.nix
./../../modules/services/webdav.nix
./../../modules/graphics/workstation.nix
./../../modules/hardware/nvidia.nix
];
networking.hostName = "minoxy";
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
systemd.targets.sleep.enable = true;
systemd.targets.suspend.enable = true;
virtualisation.docker.enable = true;
virtualisation.docker.storageDriver = "btrfs";
# Never change this!
system.stateVersion = "25.05";
}