diff --git a/hosts/nixos/home.nix b/hosts/nixos/home.nix index 86451af..9d93e6c 100644 --- a/hosts/nixos/home.nix +++ b/hosts/nixos/home.nix @@ -12,18 +12,25 @@ # PACKAGES home.packages = with pkgs; [ - librewolf - thunderbird qbittorrent alejandra keepassxc restic age - nh nix-output-monitor nvd + thunderbird ]; + # Install librewolf + programs.librewolf.enable = true; + + # Install nh + programs.nh = { + enable = true; + flake = "/home/crony/Repos/nixos"; + }; + # Enable programs to get their themes programs.foot.enable = true; @@ -243,7 +250,6 @@ # Default environmental variables home.sessionVariables = { EDITOR = "nvim"; - FLAKE = "/home/crony/Repos/nixos"; }; # Let Home Manager install and manage itself.