From 77f169fef42dcc530b2b3fe3c62697014897c831 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Thu, 26 Mar 2026 20:49:50 +0100 Subject: [PATCH] Lib/Nixos: Import compatible systemmodules into darwin system --- lib/nixos.nix | 2 +- system/systemmodules/darwin.nix | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 system/systemmodules/darwin.nix 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 + ]; +}