diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-12-20 08:33:17 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-12-20 08:33:17 -0500 |
| commit | 032c6a37245bce6533bc7ee22971343625f57072 (patch) | |
| tree | 80b5cffb24e19cb83ec776bbe94c772eb8a1e877 | |
| parent | astal: only for hyprland (diff) | |
| download | dotfiles-nix-032c6a37245bce6533bc7ee22971343625f57072.tar.gz dotfiles-nix-032c6a37245bce6533bc7ee22971343625f57072.tar.bz2 dotfiles-nix-032c6a37245bce6533bc7ee22971343625f57072.zip | |
home: fix more paths out of home dir
| -rw-r--r-- | home/default.nix | 6 | ||||
| -rw-r--r-- | home/desktops/default.nix | 1 | ||||
| -rw-r--r-- | hosts/shinji/sops.nix | 2 | ||||
| -rw-r--r-- | hosts/thinkpad/sops.nix | 2 |
4 files changed, 9 insertions, 2 deletions
diff --git a/home/default.nix b/home/default.nix index da7ca3b..63a95c5 100644 --- a/home/default.nix +++ b/home/default.nix @@ -73,6 +73,9 @@ in { "aacs/keydb.cfg" = { source = ../files/keys/bluray.cfg; }; + "pulse/client.conf" = { + text = "cookie-file = ${config.xdg.configHome}/pulse/cookie"; + }; }; dataFile = { @@ -150,6 +153,9 @@ in { LEIN_HOME = "${config.xdg.dataHome}/lein"; MIN_HOME = "${config.xdg.dataHome}/mix"; NODE_REPL_HISTORY = "${config.xdg.stateHome}/node_repl_history"; + NPM_CONFIG_INIT_MODULE = "${config.xdg.configHome}/npm/config/npm-init.js"; + NPM_CONFIG_CACHE = "${config.xdg.cacheHome}/npm"; + NPM_CONFIG_TMP = "/tmp/npm"; NUGET_PACKAGES = "${config.xdg.cacheHome}/NuGetPackages"; OPAMROOT = "${config.xdg.dataHome}/opam"; PYTHON_HISTORY = "${config.xdg.stateHome}/python_history"; diff --git a/home/desktops/default.nix b/home/desktops/default.nix index ab2c752..0831bc0 100644 --- a/home/desktops/default.nix +++ b/home/desktops/default.nix @@ -66,6 +66,7 @@ in { sf-compact ]); + # user fonts fonts.fontconfig = { enable = true; defaultFonts = { diff --git a/hosts/shinji/sops.nix b/hosts/shinji/sops.nix index a7ede54..1e46b6a 100644 --- a/hosts/shinji/sops.nix +++ b/hosts/shinji/sops.nix @@ -15,7 +15,7 @@ sops = { defaultSopsFile = ./secrets.yaml; - gnupg.home = config.homePath + "/.gnupg"; + gnupg.home = config.homePath + ".local/share/gnupg"; gnupg.sshKeyPaths = []; secrets = { diff --git a/hosts/thinkpad/sops.nix b/hosts/thinkpad/sops.nix index a7ede54..1e46b6a 100644 --- a/hosts/thinkpad/sops.nix +++ b/hosts/thinkpad/sops.nix @@ -15,7 +15,7 @@ sops = { defaultSopsFile = ./secrets.yaml; - gnupg.home = config.homePath + "/.gnupg"; + gnupg.home = config.homePath + ".local/share/gnupg"; gnupg.sshKeyPaths = []; secrets = { |