created vs vm

This commit is contained in:
2026-02-14 19:21:25 -05:00
parent 2592a1cd72
commit 1769e583d8
4 changed files with 117 additions and 0 deletions

View File

@@ -162,5 +162,30 @@
# }
# ];
};
nixosConfigurations."thancred" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit userName userEmail;
hostname = "thancred";
role = "server";
};
modules = [
myOverlays
./modules/common
./modules/machine/thancred
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = extraSpecialArgs;
home-manager.backupFileExtension = "bak";
home-manager.users.${userName}.imports = [
./home
];
}
];
};
};
}