nixos-conf/machine-confs/gaming.nix

25 lines
454 B
Nix

{ pkgs, ... }:
{
networking.hostName = "gaming";
imports = [
../base.nix
../users/vili.nix
../desktop.nix
../gaming.nix
../services/sunshine.nix
# ../hardware-specific/nvidia.nix
];
users.users.vili.hashedPasswordFile = pkgs.lib.mkForce null;
swapDevices = pkgs.lib.mkForce [
{
device = "/var/lib/swapfile";
size = 16 * 1024;
}
];
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
}