diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-19 18:07:20 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-19 18:07:20 +0200 |
| commit | f6c4c51e517a4bb6dce2148b852f1162a0b7977e (patch) | |
| tree | b6fc116bc2882a852c8e78d5ef79b986ee8ff16f /common/home | |
| parent | 3b276530b697f750121b585169e90ca3d476fb0f (diff) | |
direnv: configure and remove compilers from syspkg
Diffstat (limited to 'common/home')
| -rw-r--r-- | common/home/default.nix | 2 | ||||
| -rw-r--r-- | common/home/programs/direnv/default.nix | 5 | ||||
| -rw-r--r-- | common/home/programs/firefox/default.nix | 1 |
3 files changed, 7 insertions, 1 deletions
diff --git a/common/home/default.nix b/common/home/default.nix index f6bce90..5b32a0f 100644 --- a/common/home/default.nix +++ b/common/home/default.nix @@ -18,10 +18,10 @@ let "password-store" "gpg" "ssh" - "opam" "neomutt" "mbsync" "msmtp" + "direnv" ]; services = [ "syncthing" diff --git a/common/home/programs/direnv/default.nix b/common/home/programs/direnv/default.nix new file mode 100644 index 0000000..d0baee2 --- /dev/null +++ b/common/home/programs/direnv/default.nix @@ -0,0 +1,5 @@ +{ ... }: +{ + enable = true; + enableZshIntegration = true; +} diff --git a/common/home/programs/firefox/default.nix b/common/home/programs/firefox/default.nix index 0f98473..c8d43f3 100644 --- a/common/home/programs/firefox/default.nix +++ b/common/home/programs/firefox/default.nix @@ -14,6 +14,7 @@ in policies = { DefaultDownloadDirectory = "/home/n8"; + DownloadDirectory = "/home/n8"; DisableTelemetry = true; DisableFirefoxStudies = true; EnableTrackingProtection = { |