diff options
| author | Mike Vink <mike@pionative.com> | 2024-02-11 22:38:26 +0100 |
|---|---|---|
| committer | Mike Vink <mike@pionative.com> | 2024-02-11 22:38:26 +0100 |
| commit | 55d1a28c351c2409f7007367c2b878b8e434c126 (patch) | |
| tree | d306f0ede8d8d9b7cca01135b8099f6a34a52713 /profiles/core | |
| parent | 6becf0ceea7782d8fce32203b7299b495f74ba3a (diff) | |
fix path
Diffstat (limited to 'profiles/core')
| -rw-r--r-- | profiles/core/home.nix | 5 | ||||
| -rw-r--r-- | profiles/core/secrets.nix | 2 |
2 files changed, 2 insertions, 5 deletions
diff --git a/profiles/core/home.nix b/profiles/core/home.nix index 55c9587..f1f52f1 100644 --- a/profiles/core/home.nix +++ b/profiles/core/home.nix @@ -122,11 +122,8 @@ export PATH=$PATH:$HOME/.local/bin [[ -f ~/.cache/wal/sequences ]] && (cat ~/.cache/wal/sequences &) unset LD_PRELOAD - if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then - . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' - fi # include nix.sh if it exists - [[ -f ~/.nix-profile/etc/profile.d/nix.sh ]] && . ~/.nix-profile/etc/profile.d/nix.sh + export COLORTERM=truecolor export GPG_TTY="$(tty)" gpgconf --launch gpg-agent diff --git a/profiles/core/secrets.nix b/profiles/core/secrets.nix index e5f5cc8..7361123 100644 --- a/profiles/core/secrets.nix +++ b/profiles/core/secrets.nix @@ -39,7 +39,7 @@ in programs.password-store = { enable = true; settings = { - PASSWORD_STORE_DIR = "${config.synced.password-store.path}/password-store"; + PASSWORD_STORE_DIR = config.synced.password-store.path; }; }; }; |
