diff options
Diffstat (limited to 'home/home.nix')
-rw-r--r-- | home/home.nix | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/home/home.nix b/home/home.nix index f6b2d81b6048..bb56cb6ea576 100644 --- a/home/home.nix +++ b/home/home.nix @@ -6,6 +6,7 @@ let machine = ./machines/chupacabra.nix; in ./modules/alacritty.nix ./modules/emacs.nix ./modules/email.nix + ./modules/firefox.nix ./modules/i3.nix ./modules/shell.nix ./modules/vim.nix @@ -87,17 +88,12 @@ let machine = ./machines/chupacabra.nix; in impure.clonedRepos.passwordStore = { github = "glittershark/pass"; - path = ".password-store"; + path = ".local/share/password-store"; }; - services.gpg-agent = { - enable = true; - }; + urbint.projectPath = "code/urb"; - xdg.mimeApps = { + services.gpg-agent = { enable = true; - defaultApplications = { - "text/html" = [ "firefox.desktop" ]; - }; }; } |