fix: Use tmpl with generic

This commit is contained in:
2025-10-29 11:29:50 +01:00
parent 63e04f57db
commit a845b237f9
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
}:
{
networking = {
hostName = "nixos";
hostName = "generic";
domain = "oceanbox.io";
search = [ "oceanbox.io" ];
firewall.allowedTCPPorts = [ ];

View File

@@ -20,5 +20,5 @@ in
# "${self}/modules/my-cool-module/thing.nix"
outPath = ./.;
nixosConfigurations.generic = nixos nixpkgs ./configuration.nix;
nixosConfigurations.generic = nixos nixpkgs ./configuration.tmpl.nix;
}