23 lines
496 B
Nix
23 lines
496 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
|
|
../nixos/hosts/candlekeep/zerotier.nix
|
|
];
|
|
};
|
|
}
|