feat: add extra options to all systems
This commit is contained in:
parent
6198e45171
commit
fc0924be90
3 changed files with 8 additions and 4 deletions
|
@ -7,15 +7,11 @@ in
|
||||||
marr = lib.my.mkSystem {
|
marr = lib.my.mkSystem {
|
||||||
hostname = "marr";
|
hostname = "marr";
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
extraModules = [
|
|
||||||
#inputs.nixos-hardware.nixosModules.dell-xps-15-9510-nvidia
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
brontes = lib.my.mkSystem {
|
brontes = lib.my.mkSystem {
|
||||||
hostname = "brontes";
|
hostname = "brontes";
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
extraModules = [ ];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
styrak = lib.my.mkSystem {
|
styrak = lib.my.mkSystem {
|
||||||
|
|
7
options/default.nix
Normal file
7
options/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ lib, ... }:
|
||||||
|
{
|
||||||
|
options.custom.pubKey = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
default = "";
|
||||||
|
};
|
||||||
|
}
|
|
@ -25,6 +25,7 @@
|
||||||
inherit system;
|
inherit system;
|
||||||
modules = [
|
modules = [
|
||||||
"${self}/hosts/${hostname}/configuration.nix"
|
"${self}/hosts/${hostname}/configuration.nix"
|
||||||
|
"${self}/options"
|
||||||
{ networking.hostName = hostname; }
|
{ networking.hostName = hostname; }
|
||||||
] ++ extraModules;
|
] ++ extraModules;
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue