feat: add inputs' to mkSystem
This commit is contained in:
parent
3097632cfb
commit
18161231cc
2 changed files with 33 additions and 22 deletions
|
@ -1,28 +1,35 @@
|
|||
{ inputs, ... }:
|
||||
{ inputs, withSystem, ... }:
|
||||
let
|
||||
inherit (inputs.self) lib;
|
||||
inherit (inputs.self.lib.my) mkSystem;
|
||||
in
|
||||
{
|
||||
flake.nixosConfigurations = {
|
||||
marr = lib.my.mkSystem {
|
||||
marr = mkSystem {
|
||||
inherit withSystem;
|
||||
hostname = "marr";
|
||||
system = "x86_64-linux";
|
||||
extraModules = [ inputs.agenix.nixosModules.default ];
|
||||
};
|
||||
|
||||
brontes = lib.my.mkSystem {
|
||||
brontes = mkSystem {
|
||||
inherit withSystem;
|
||||
hostname = "brontes";
|
||||
system = "x86_64-linux";
|
||||
extraModules = [ inputs.agenix.nixosModules.default ];
|
||||
};
|
||||
|
||||
styrak = lib.my.mkSystem {
|
||||
hostname = "styrak";
|
||||
shan = mkSystem {
|
||||
inherit withSystem;
|
||||
hostname = "shan";
|
||||
system = "x86_64-linux";
|
||||
extraModules = [ inputs.disko.nixosModules.disko ];
|
||||
extraModules = [
|
||||
inputs.disko.nixosModules.disko
|
||||
inputs.agenix.nixosModules.default
|
||||
];
|
||||
};
|
||||
|
||||
raptus = lib.my.mkSystem {
|
||||
raptus = mkSystem {
|
||||
inherit withSystem;
|
||||
hostname = "raptus";
|
||||
system = "x86_64-linux";
|
||||
extraModules = [
|
||||
|
|
|
@ -17,24 +17,28 @@
|
|||
|
||||
mkSystem =
|
||||
{
|
||||
withSystem,
|
||||
hostname,
|
||||
extraModules ? [ ],
|
||||
system,
|
||||
}:
|
||||
lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [
|
||||
"${self}/hosts/${hostname}/configuration.nix"
|
||||
"${self}/options"
|
||||
"${self}/options/pulseview.nix"
|
||||
"${self}/options/media.nix"
|
||||
{ networking.hostName = hostname; }
|
||||
] ++ extraModules;
|
||||
specialArgs = {
|
||||
inherit inputs self;
|
||||
username = "ny";
|
||||
};
|
||||
};
|
||||
withSystem system (
|
||||
{ inputs', self', ... }:
|
||||
lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [
|
||||
"${self}/hosts/${hostname}/configuration.nix"
|
||||
"${self}/options"
|
||||
"${self}/modules/commons"
|
||||
{ networking.hostName = hostname; }
|
||||
] ++ extraModules;
|
||||
specialArgs = {
|
||||
inherit inputs inputs';
|
||||
inherit self self';
|
||||
username = "ny";
|
||||
};
|
||||
}
|
||||
);
|
||||
|
||||
validatePath =
|
||||
s: if (builtins.pathExists s) then (builtins.baseNameOf s) else throw "${s} does not exist";
|
||||
|
|
Loading…
Add table
Reference in a new issue