1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 09:58:32 +02:00
home-manager/tests/modules/systemd/session-variables.nix

23 lines
466 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2020-12-16 14:22:02 +01:00
{
config = {
systemd.user.sessionVariables = {
V_int = 1;
V_str = "2";
};
nmt.script = ''
2020-04-10 00:25:21 +02:00
envFile=home-files/.config/environment.d/10-home-manager.conf
assertFileExists $envFile
2021-07-18 23:34:50 +02:00
assertFileContent $envFile ${
pkgs.writeText "expected" ''
LOCALE_ARCHIVE_2_27=${pkgs.glibcLocales}/lib/locale/locale-archive
V_int=1
V_str=2
''
}
'';
};
}