mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
1fdb16866b
Via environment.d(5).
18 lines
348 B
Nix
18 lines
348 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
systemd.user.sessionVariables = {
|
|
V_int = 1;
|
|
V_str = "2";
|
|
};
|
|
|
|
nmt.script = ''
|
|
local envFile=home-files/.config/environment.d/10-home-manager.conf
|
|
assertFileExists $envFile
|
|
assertFileContent $envFile ${./session-variables-expected.conf}
|
|
'';
|
|
};
|
|
}
|