diff options
author | Griffin Smith <root@gws.fyi> | 2020-03-31T21·10-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-03-31T21·10-0400 |
commit | 562100bad219434920f1787187c7a3be19c19c86 (patch) | |
tree | bafd22d8bf7ae16aab96db8cdde3f28b35e26715 /home/home.nix | |
parent | cf4159a6da75200d9e3971cc3253a62cb517ed72 (diff) |
More robust config for default firefox browser
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" ]; - }; }; } |