From 938cc3f107243369352c7073bd9c87f64ac98f54 Mon Sep 17 00:00:00 2001 From: chaos Date: Wed, 24 Jul 2024 16:33:45 +0100 Subject: [PATCH] add nix-tree and nix-output-monitor to hm profiles --- profiles/home-manager/base/nix.nix | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 profiles/home-manager/base/nix.nix diff --git a/profiles/home-manager/base/nix.nix b/profiles/home-manager/base/nix.nix new file mode 100644 index 0000000..94a281c --- /dev/null +++ b/profiles/home-manager/base/nix.nix @@ -0,0 +1,6 @@ +{pkgs, ...}: { + home.packages = with pkgs; [ + nix-tree + nix-output-monitor + ]; +}