Skip to content

Commit

Permalink
xdg: add missing stateHome default for legacy
Browse files Browse the repository at this point in the history
Erroring in some tests because stateHome isn't set for the legacy state
version.
  • Loading branch information
khaneliman committed Mar 1, 2025
1 parent 47c6949 commit 66505b8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/misc/xdg.nix
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ in {
xdg.configHome =
mkDefault (getEnvFallback "XDG_CONFIG_HOME" defaultConfigHome);
xdg.dataHome = mkDefault (getEnvFallback "XDG_DATA_HOME" defaultDataHome);
xdg.stateHome =
mkDefault (getEnvFallback "XDG_STATE_HOME" defaultStateHome);
})

# "Modern" deterministic setup.
Expand Down

0 comments on commit 66505b8

Please sign in to comment.