2023-07-04 11:28:25 +02:00
|
|
|
{ config, pkgs, ... }:
|
2019-03-22 12:47:49 +01:00
|
|
|
|
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";
|
2019-03-22 12:47:49 +01:00
|
|
|
};
|
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" ''
|
2023-07-04 11:28:25 +02:00
|
|
|
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
|
|
|
|
''
|
|
|
|
}
|
|
|
|
'';
|
2019-03-22 12:47:49 +01:00
|
|
|
}
|