aboutsummaryrefslogtreecommitdiff
path: root/modules/terminal/system/programs/nh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/terminal/system/programs/nh.nix')
-rw-r--r--modules/terminal/system/programs/nh.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/terminal/system/programs/nh.nix b/modules/terminal/system/programs/nh.nix
new file mode 100644
index 0000000..2fcd674
--- /dev/null
+++ b/modules/terminal/system/programs/nh.nix
@@ -0,0 +1,14 @@
+{
+ config,
+ lib,
+ ...
+}: let
+ cfg = config.collinux.terminal.programs.nh;
+in
+ lib.mkIf cfg.enable {
+ programs.nh = {
+ enable = true;
+ flake = "/home/collin/nixos";
+ clean.enable = true;
+ };
+ }