diff --git a/lib/nixos.nix b/lib/nixos.nix index 31241fac..317bef0b 100644 --- a/lib/nixos.nix +++ b/lib/nixos.nix @@ -130,7 +130,7 @@ ../system/${hostname} # Import all of my custom system modules - # ../system/systemmodules # TODO: + ../system/systemmodules/darwin.nix ] extraModules diff --git a/system/systemmodules/darwin.nix b/system/systemmodules/darwin.nix new file mode 100644 index 00000000..ae89ddc9 --- /dev/null +++ b/system/systemmodules/darwin.nix @@ -0,0 +1,5 @@ +{...}: { + imports = [ + ./sops-nix + ]; +}