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
|
let
|
||||||
inherit (inputs.self) lib;
|
inherit (inputs.self.lib.my) mkSystem;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
flake.nixosConfigurations = {
|
flake.nixosConfigurations = {
|
||||||
marr = lib.my.mkSystem {
|
marr = mkSystem {
|
||||||
|
inherit withSystem;
|
||||||
hostname = "marr";
|
hostname = "marr";
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
extraModules = [ inputs.agenix.nixosModules.default ];
|
extraModules = [ inputs.agenix.nixosModules.default ];
|
||||||
};
|
};
|
||||||
|
|
||||||
brontes = lib.my.mkSystem {
|
brontes = mkSystem {
|
||||||
|
inherit withSystem;
|
||||||
hostname = "brontes";
|
hostname = "brontes";
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
extraModules = [ inputs.agenix.nixosModules.default ];
|
extraModules = [ inputs.agenix.nixosModules.default ];
|
||||||
};
|
};
|
||||||
|
|
||||||
styrak = lib.my.mkSystem {
|
shan = mkSystem {
|
||||||
hostname = "styrak";
|
inherit withSystem;
|
||||||
|
hostname = "shan";
|
||||||
system = "x86_64-linux";
|
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";
|
hostname = "raptus";
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
extraModules = [
|
extraModules = [
|
||||||
|
|
|
@ -17,24 +17,28 @@
|
||||||
|
|
||||||
mkSystem =
|
mkSystem =
|
||||||
{
|
{
|
||||||
|
withSystem,
|
||||||
hostname,
|
hostname,
|
||||||
extraModules ? [ ],
|
extraModules ? [ ],
|
||||||
system,
|
system,
|
||||||
}:
|
}:
|
||||||
lib.nixosSystem {
|
withSystem system (
|
||||||
inherit system;
|
{ inputs', self', ... }:
|
||||||
modules = [
|
lib.nixosSystem {
|
||||||
"${self}/hosts/${hostname}/configuration.nix"
|
inherit system;
|
||||||
"${self}/options"
|
modules = [
|
||||||
"${self}/options/pulseview.nix"
|
"${self}/hosts/${hostname}/configuration.nix"
|
||||||
"${self}/options/media.nix"
|
"${self}/options"
|
||||||
{ networking.hostName = hostname; }
|
"${self}/modules/commons"
|
||||||
] ++ extraModules;
|
{ networking.hostName = hostname; }
|
||||||
specialArgs = {
|
] ++ extraModules;
|
||||||
inherit inputs self;
|
specialArgs = {
|
||||||
username = "ny";
|
inherit inputs inputs';
|
||||||
};
|
inherit self self';
|
||||||
};
|
username = "ny";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
validatePath =
|
validatePath =
|
||||||
s: if (builtins.pathExists s) then (builtins.baseNameOf s) else throw "${s} does not exist";
|
s: if (builtins.pathExists s) then (builtins.baseNameOf s) else throw "${s} does not exist";
|
||||||
|
|
Loading…
Add table
Reference in a new issue