nixos-conf/machine-confs/gaming.nix

29 lines
494 B
Nix

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