From 4bfaa95ebf158b7cd276b5c11ba1792241af6797 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Thu, 30 Jan 2025 08:42:53 +0100 Subject: [PATCH] Enable specific options for some programs. --- hosts/nixos/home.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) 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.