nixos-conf/hosts/gaming/configuration.nix

21 lines
413 B
Nix
Raw Normal View History

2025-06-08 10:44:33 +03:00
{ config, lib, ... }:
2025-04-29 16:26:43 +03:00
{
2025-06-08 10:44:33 +03:00
services.clatd = {
enable = true;
settings.clat-v6-addr = "${config.custom.gua_pref}11::c1";
};
2025-04-29 16:45:17 +03:00
imports = [
../../shared/base.nix
../../shared/hardware/nvidia.nix
2025-06-05 00:41:01 +03:00
../../shared/hardware/vm.nix
2025-05-29 15:39:42 +03:00
../../personal/desktop.nix
2025-06-05 00:41:01 +03:00
../../personal/programs/i3.nix
2025-05-29 15:39:42 +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
}