From d252de8a3a82b729c7b45a5c79df1d59f3281908 Mon Sep 17 00:00:00 2001 From: Jelle Spreeuwenberg Date: Tue, 21 Apr 2026 17:54:30 +0200 Subject: [PATCH] feat: add nh --- modules/features/nh.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 modules/features/nh.nix diff --git a/modules/features/nh.nix b/modules/features/nh.nix new file mode 100644 index 0000000..384129e --- /dev/null +++ b/modules/features/nh.nix @@ -0,0 +1,10 @@ +{ + flake.modules.homeManager.nh = + { config, ... }: + { + programs.nh = { + enable = true; + flake = config.meta.user.nixosConfigurationPath; + }; + }; +}