From d003becfc6db079f1a7ade8cfdabe989d70bb930 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Fri, 15 Mar 2024 14:09:37 -0500 Subject: [PATCH] Consolidating some settings. --- home-manager/gandalf.nix | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/home-manager/gandalf.nix b/home-manager/gandalf.nix index 6c1a2d1..aa662c5 100644 --- a/home-manager/gandalf.nix +++ b/home-manager/gandalf.nix @@ -7,6 +7,13 @@ home = { username = "jahanson"; homeDirectory = "/home/jahanson"; + stateVersion = "23.11"; + + packages = with pkgs; [ + # it provides the command `nom` works just like `nix` + # with more details log output + nix-output-monitor + ]; }; # basic configuration of git, please change to your own @@ -51,18 +58,5 @@ }; }; - # Packages that should be installed to the user profile. - home.packages = with pkgs; [ - # here is some command line tools I use frequently - # feel free to add your own or remove some of them - - # nix related - # - # it provides the command `nom` works just like `nix` - # with more details log output - nix-output-monitor - ]; - - home.stateVersion = "23.11"; programs.home-manager.enable = true; } \ No newline at end of file