all repos — nixfiles @ 6df90f2470db9ec3b2febf684a08493dcddf2459

System and user configuration, managed by nix and home-manager

Configure programs to "follow" XDG spec
Alan Pearce alan@alanpearce.eu
Fri, 01 Sep 2023 21:23:53 +0200
commit

6df90f2470db9ec3b2febf684a08493dcddf2459

parent

e314ff32e87451b9574b4b762986e37b42f0fd24

M user/settings/base.nixuser/settings/base.nix
@@ -12,10 +12,29 @@ programs.home-manager.enable = true;   manual = {
     html.enable = true;
   };
-  home.sessionVariables = {
-    EMAIL = "alan@alanpearce.eu";
-    MANPAGER = "bat -l man -p";
-  };
+  home.sessionVariables =
+    let
+      conf = config.xdg.configHome;
+      data = config.xdg.dataHome;
+      cache = config.xdg.cacheHome;
+      state = config.xdg.stateHome;
+    in
+    {
+      EMAIL = "alan@alanpearce.eu";
+      MANPAGER = "bat -l man -p";
+      ABDUCO_SOCKET_DIR = "${state}/abduco";
+      GNUPGHOME = "${data}/gnupg";
+      SOLARGRAPH_CACHE = "${cache}/solargraph";
+      ASPELL_CONF = "per-conf ${conf}/aspell/aspell.conf; personal ${conf}/aspell/en.pws; repl ${conf}/aspell/en.prepl";
+      ELECTRUMDIR = "${data}/electrum";
+      DOCKER_CONFIG = "${conf}/docker";
+      npm_config_userconfig = "${conf}/npm/config";
+      PASSWORD_STORE_HOME = "${data}/password-store";
+      WGETRC = pkgs.writeText "wgetrc" ''
+        hsts-file = ${cache}/wget-hsts
+      '';
+      SQLITE_HISTORY = "${data}/sqlite_history";
+    };
   xdg = {
     enable = true;
     cacheHome =
@@ -24,7 +43,10 @@ then "${config.home.homeDirectory}/Library/Caches/XDG"       else "${config.home.homeDirectory}/.cache";
     configHome = "${config.home.homeDirectory}/.config";
     dataHome = "${config.home.homeDirectory}/.local/share";
-    stateHome = "${config.home.homeDirectory}/.local/state";
+    stateHome =
+      if pkgs.stdenv.isDarwin
+      then "${config.home.homeDirectory}/Library/Caches/TemporaryItems/State"
+      else "${config.home.homeDirectory}/.local/state";
   };
 
   home.shellAliases = {
M user/settings/development/javascript.nixuser/settings/development/javascript.nix
@@ -119,7 +119,7 @@ npli = "npm link";     npul = "npm unlink";
   };
 
-  home.file.".npmrc".text = ''
+  xdg.configFile."npm/config".text = ''
     prefix=''${HOME}/.local
     cache=${config.xdg.cacheHome}/npm/
     store-dir=${config.xdg.cacheHome}/pnpm/
M user/settings/satoshipay.nixuser/settings/satoshipay.nix
@@ -107,7 +107,7 @@ enable = true;       };
     };
 
-  home.file.".npmrc".text = ''
+  xdg.configFile."npm/config".text = ''
     @satoshipay:registry=https://registry.npmjs.org/
   '';
 }