nixos-conf/hosts/x86_64-linux/gaming.nix

23 lines
480 B
Nix

{ ... }:
{
imports = [ ../../disko/zfs-impermanence.nix ];
custom = {
platform = {
impermanence.enable = true;
vm.enable = true;
};
hardware.nvidia.enable = true;
roles.desktop.enable = true;
programs.i3.enable = true;
services = {
gamingServer.enable = true;
nixCacheClient = {
enable = true;
disableLocalBuilds = true;
};
};
};
networking.hostId = "48434cbd";
system.stateVersion = "25.05";
}