mirror of
https://github.com/JuLi0n21/publicConfig.git
synced 2026-06-05 03:16:30 +00:00
add kiwi and lillypilly
This commit is contained in:
+31
-5
@@ -1,6 +1,6 @@
|
||||
{ inputs }:
|
||||
|
||||
let
|
||||
let
|
||||
lib = inputs.nixpkgs.lib;
|
||||
|
||||
recursiveImport = import ./rI.nix { inherit lib; };
|
||||
@@ -25,16 +25,42 @@ in
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
notframework = lib.nixosSystem {
|
||||
k3sMain = lib.nixosSystem {
|
||||
specialArgs = specialArgs // {
|
||||
hostVars = {
|
||||
hostname = "framework-12";
|
||||
hostname = "precision-tower-5810";
|
||||
stateVersion = "25.11";
|
||||
};
|
||||
};
|
||||
modules = recursiveImport [
|
||||
./base
|
||||
./hosts/k3s-nixos-01
|
||||
];
|
||||
};
|
||||
|
||||
lillypilly = lib.nixosSystem {
|
||||
specialArgs = specialArgs // {
|
||||
hostVars = {
|
||||
hostname = "lillypilly";
|
||||
stateVersion = "25.05";
|
||||
};
|
||||
};
|
||||
modules = recursiveImport [
|
||||
./base
|
||||
./hosts/lilly
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
kiwi = lib.nixosSystem {
|
||||
specialArgs = specialArgs // {
|
||||
hostVars = {
|
||||
hostname = "kiwi";
|
||||
stateVersion = "25.11";
|
||||
};
|
||||
};
|
||||
modules = recursiveImport [
|
||||
./base
|
||||
./hosts/kiwi
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user