aboutsummaryrefslogtreecommitdiff
path: root/modules/terminal/system/programs/nh.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-07-08 14:55:31 +0000
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-07-08 14:55:31 +0000
commitfabc1603e42673afddde37ef121e0b8935559086 (patch)
treee09834122fb348d6253d9ab48549bf559c043dfd /modules/terminal/system/programs/nh.nix
parentc31425298f3de9fff78d38a36ccc2d8e14c580ee (diff)
move stuff to their own files; system update
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;
+ };
+ }