feat: add inputs' to mkSystem

This commit is contained in:
Nydragon 2024-09-22 00:40:12 +02:00
parent 3097632cfb
commit 18161231cc
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
2 changed files with 33 additions and 22 deletions

View file

@ -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 = [

View file

@ -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";