nixos-conf/machine-confs/gaming.nix

17 lines
296 B
Nix
Raw Normal View History

2025-05-08 23:22:46 +03:00
{ lib, ... }:
2025-04-29 16:26:43 +03:00
{
networking.hostName = "gaming";
2025-04-29 16:45:17 +03:00
imports = [
2025-05-29 15:39:42 +03:00
../shared/base.nix
../shared/hardware/nvidia.nix
../personal-machines/desktop.nix
2025-05-29 02:12:20 +03:00
../servers/gaming-server.nix
2025-04-29 16:45:17 +03:00
];
2025-04-29 16:26:43 +03:00
2025-05-08 23:22:46 +03:00
users.users.vili.hashedPasswordFile = lib.mkForce null;
2025-04-29 16:26:43 +03:00
services.qemuGuest.enable = true;
}