mirror of
https://github.com/nix-community/home-manager
synced 2024-12-19 17:44:05 +00:00
26 lines
920 B
Nix
26 lines
920 B
Nix
|
{ 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" ''
|
||
|
LOCALE_ARCHIVE_2_27=${pkgs.glibcLocales}/lib/locale/locale-archive
|
||
|
XDG_CONFIG_DIRS=/etc/xdg:/foo/bar''${XDG_CONFIG_DIRS:+:$XDG_CONFIG_DIRS}
|
||
|
XDG_DATA_DIRS=/usr/local/share:/usr/share:/baz/quux''${XDG_DATA_DIRS:+:$XDG_DATA_DIRS}
|
||
|
''
|
||
|
}
|
||
|
|
||
|
sessionVarsFile=home-path/etc/profile.d/hm-session-vars.sh
|
||
|
assertFileExists $sessionVarsFile
|
||
|
assertFileContains $sessionVarsFile \
|
||
|
'export $(${pkgs.systemd}/lib/systemd/user-environment-generators/30-systemd-environment-d-generator)'
|
||
|
'';
|
||
|
};
|
||
|
}
|