nix-config/modules/hosts/grymforge.nix
2026-04-20 15:25:40 -04:00

22 lines
451 B
Nix

{
config.dendritic.hosts.grymforge = {
system = "x86_64-linux";
type = "desktop";
roles = [
"workstation"
];
primaryUser = "gwg313";
primaryUserExtraGroups = [
"wheel"
"networkmanager"
"audio"
];
nixosModules = [
../nixos/hardware/grymforge.nix
../nixos/hosts/candlekeep/ssh.nix
../nixos/hosts/candlekeep/nfs.nix
../nixos/hosts/candlekeep/networking.nix
];
};
}