From fc0924be902c11297565b83f2876efef379f185a Mon Sep 17 00:00:00 2001 From: Nydragon Date: Wed, 17 Jul 2024 01:26:42 +0200 Subject: [PATCH] feat: add extra options to all systems --- hosts/default.nix | 4 ---- options/default.nix | 7 +++++++ parts/lib/functions.nix | 1 + 3 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 options/default.nix 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 = {