27 lines
518 B
Nix
27 lines
518 B
Nix
{
|
|
config.dendritic.users.gwg313 = {
|
|
username = "gwg313";
|
|
|
|
nixosModules = [
|
|
];
|
|
|
|
homeModules = [
|
|
../nixos/hosts/candlekeep/git.nix
|
|
../nixos/hosts/candlekeep/ssh-hosts.nix
|
|
];
|
|
|
|
homes.candlekeep = {
|
|
system = "x86_64-linux";
|
|
stateVersion = "25.11";
|
|
roles = [ "workstation" ];
|
|
extraModules = [ ];
|
|
};
|
|
|
|
homes.grymforge = {
|
|
system = "x86_64-linux";
|
|
stateVersion = "25.11";
|
|
roles = [ "workstation" ];
|
|
extraModules = [ ];
|
|
};
|
|
};
|
|
}
|