2020-10-12 00:22:58 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
systemd.user.sessionVariables = {
|
|
|
|
V_int = 1;
|
|
|
|
V_str = "2";
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
envFile=home-files/.config/environment.d/10-home-manager.conf
|
|
|
|
assertFileExists $envFile
|
2021-11-04 16:42:44 +00:00
|
|
|
assertFileContent $envFile ${
|
|
|
|
pkgs.writeText "expected" ''
|
|
|
|
LOCALE_ARCHIVE_2_27=${pkgs.glibcLocales}/lib/locale/locale-archive
|
|
|
|
V_int=1
|
|
|
|
V_str=2
|
2023-01-10 09:35:00 +00:00
|
|
|
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
|
2021-11-04 16:42:44 +00:00
|
|
|
''
|
|
|
|
}
|
2020-10-12 00:22:58 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|