This commit is contained in:
xeovalyte 2025-04-24 17:27:32 +02:00
parent 4b1332e748
commit bd454fe348
Signed by: xeovalyte
SSH Key Fingerprint: SHA256:GWI1hq+MNKR2UOcvk7n9tekASXT8vyazK7vDF9Xyciw
3 changed files with 2 additions and 2 deletions

View File

@ -80,12 +80,12 @@
]; ];
}; };
v-th-ctr01 = nixpkgs.lib.nixosSystem { v-th-ctr-01 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; }) ({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
./hosts/th-vrt-ctr01 ./hosts/v-th-ctr-01
]; ];
}; };
}; };