absolutely pointless rename because I felt like it

This commit is contained in:
jacekpoz 2024-08-30 20:27:07 +02:00
parent 0e712445a2
commit 6072a82432
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -5,7 +5,7 @@
inherit (inputs) self; inherit (inputs) self;
inherit (self) lib; inherit (self) lib;
createSystem = systemDir: lib.nixosSystem { createHost = systemDir: lib.nixosSystem {
system = null; system = null;
specialArgs = {inherit lib inputs self;}; specialArgs = {inherit lib inputs self;};
modules = [ modules = [
@ -14,13 +14,13 @@
]; ];
}; };
in { in {
niks = createSystem ./niks; niks = createHost ./niks;
del = createSystem ./del; del = createHost ./del;
hape = createSystem ./hape; hape = createHost ./hape;
chmura = createSystem ./chmura; chmura = createHost ./chmura;
${inputs.work-secrets.hostname} = createSystem ./work; ${inputs.work-secrets.hostname} = createHost ./work;
} }