diff --git a/hosts/default.nix b/hosts/default.nix index 5c63499..9f2fad4 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -7,15 +7,11 @@ in marr = lib.my.mkSystem { hostname = "marr"; system = "x86_64-linux"; - extraModules = [ - #inputs.nixos-hardware.nixosModules.dell-xps-15-9510-nvidia - ]; }; brontes = lib.my.mkSystem { hostname = "brontes"; system = "x86_64-linux"; - extraModules = [ ]; }; styrak = lib.my.mkSystem { diff --git a/options/default.nix b/options/default.nix new file mode 100644 index 0000000..2152cb8 --- /dev/null +++ b/options/default.nix @@ -0,0 +1,7 @@ +{ lib, ... }: +{ + options.custom.pubKey = lib.mkOption { + type = lib.types.str; + default = ""; + }; +} diff --git a/parts/lib/functions.nix b/parts/lib/functions.nix index e584bf3..6265141 100644 --- a/parts/lib/functions.nix +++ b/parts/lib/functions.nix @@ -25,6 +25,7 @@ inherit system; modules = [ "${self}/hosts/${hostname}/configuration.nix" + "${self}/options" { networking.hostName = hostname; } ] ++ extraModules; specialArgs = {