mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
15 lines
374 B
Nix
15 lines
374 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
({ ... }: { config.home.sessionPath = [ "foo" ]; })
|
|
({ ... }: { config.home.sessionPath = [ "bar" "baz" ]; })
|
|
];
|
|
|
|
nmt.script = ''
|
|
hmSessVars=home-path/etc/profile.d/hm-session-vars.sh
|
|
assertFileExists $hmSessVars
|
|
assertFileContains $hmSessVars \
|
|
'export PATH="$PATH''${PATH:+:}bar:baz:foo"'
|
|
'';
|
|
}
|