2021-05-11 02:14:42 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
xdg.systemDirs.config = [ "/etc/xdg" "/foo/bar" ];
|
|
|
|
xdg.systemDirs.data = [ "/usr/local/share" "/usr/share" "/baz/quux" ];
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
envFile=home-files/.config/environment.d/10-home-manager.conf
|
|
|
|
assertFileExists $envFile
|
|
|
|
assertFileContent $envFile ${
|
|
|
|
pkgs.writeText "expected" ''
|
2023-07-04 11:28:25 +02:00
|
|
|
LOCALE_ARCHIVE_2_27=${config.i18n.glibcLocales}/lib/locale/locale-archive
|
2022-03-18 03:22:53 +01:00
|
|
|
XDG_CACHE_HOME=/home/hm-user/.cache
|
2021-05-11 02:14:42 +02:00
|
|
|
XDG_CONFIG_DIRS=/etc/xdg:/foo/bar''${XDG_CONFIG_DIRS:+:$XDG_CONFIG_DIRS}
|
2022-03-18 03:22:53 +01:00
|
|
|
XDG_CONFIG_HOME=/home/hm-user/.config
|
2021-05-11 02:14:42 +02:00
|
|
|
XDG_DATA_DIRS=/usr/local/share:/usr/share:/baz/quux''${XDG_DATA_DIRS:+:$XDG_DATA_DIRS}
|
2022-03-18 03:22:53 +01:00
|
|
|
XDG_DATA_HOME=/home/hm-user/.local/share
|
|
|
|
XDG_STATE_HOME=/home/hm-user/.local/state
|
2021-05-11 02:14:42 +02:00
|
|
|
''
|
|
|
|
}
|
|
|
|
|
|
|
|
sessionVarsFile=home-path/etc/profile.d/hm-session-vars.sh
|
|
|
|
assertFileExists $sessionVarsFile
|
|
|
|
assertFileContains $sessionVarsFile \
|
2021-05-16 23:43:50 +02:00
|
|
|
'export XDG_CONFIG_DIRS="/etc/xdg:/foo/bar''${XDG_CONFIG_DIRS:+:$XDG_CONFIG_DIRS}"'
|
|
|
|
assertFileContains $sessionVarsFile \
|
|
|
|
'export XDG_DATA_DIRS="/usr/local/share:/usr/share:/baz/quux''${XDG_DATA_DIRS:+:$XDG_DATA_DIRS}"'
|
2021-05-11 02:14:42 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|