mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
605a8fc92e
PR #1486
22 lines
620 B
Nix
22 lines
620 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
targets.genericLinux = {
|
|
enable = true;
|
|
extraXdgDataDirs = [ "/foo" ];
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-path/etc/profile.d/hm-session-vars.sh
|
|
assertFileContains \
|
|
home-path/etc/profile.d/hm-session-vars.sh \
|
|
'export XDG_DATA_DIRS="''${NIX_STATE_DIR:-/nix/var/nix}/profiles/default/share:/home/hm-user/.nix-profile/share:/foo''${XDG_DATA_DIRS:+:}$XDG_DATA_DIRS"'
|
|
assertFileContains \
|
|
home-path/etc/profile.d/hm-session-vars.sh \
|
|
'. "${pkgs.nix}/etc/profile.d/nix.sh"'
|
|
'';
|
|
};
|
|
}
|