mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
22 lines
466 B
Nix
22 lines
466 B
Nix
{ 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
|
|
assertFileContent $envFile ${
|
|
pkgs.writeText "expected" ''
|
|
LOCALE_ARCHIVE_2_27=${pkgs.glibcLocales}/lib/locale/locale-archive
|
|
V_int=1
|
|
V_str=2
|
|
''
|
|
}
|
|
'';
|
|
};
|
|
}
|