mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
19 lines
348 B
Nix
19 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}
|
||
|
'';
|
||
|
};
|
||
|
}
|