1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-02 19:38:32 +02:00
home-manager/tests/modules/systemd/session-variables.nix

25 lines
609 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
2020-12-16 14:22:02 +01:00
{
2023-05-13 00:08:12 +02:00
systemd.user.sessionVariables = {
V_int = 1;
V_str = "2";
};
2023-05-13 00:08:12 +02:00
nmt.script = ''
envFile=home-files/.config/environment.d/10-home-manager.conf
assertFileExists $envFile
assertFileContent $envFile ${
pkgs.writeText "expected" ''
LOCALE_ARCHIVE_2_27=${config.i18n.glibcLocales}/lib/locale/locale-archive
2023-05-13 00:08:12 +02:00
V_int=1
V_str=2
XDG_CACHE_HOME=/home/hm-user/.cache
XDG_CONFIG_HOME=/home/hm-user/.config
XDG_DATA_HOME=/home/hm-user/.local/share
XDG_STATE_HOME=/home/hm-user/.local/state
''
}
'';
}