797c77a00a
This replaces some derivation outputs by simple strings rather than full Nix store paths. This removes the need to download the whole derivation when all we need is a static string.
45 lines
1 KiB
Nix
45 lines
1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
home.homeDirectory = "/test-home";
|
|
|
|
xsession = {
|
|
enable = true;
|
|
windowManager.command = "window manager command";
|
|
importedVariables = [ "EXTRA_IMPORTED_VARIABLE" ];
|
|
initExtra = "init extra commands";
|
|
profileExtra = "profile extra commands";
|
|
};
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
xorg = super.xorg // {
|
|
setxkbmap = super.xorg.setxkbmap // {
|
|
outPath = "@setxkbmap@";
|
|
};
|
|
};
|
|
})
|
|
];
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.xprofile
|
|
assertFileContent \
|
|
home-files/.xprofile \
|
|
${./basic-xprofile-expected.txt}
|
|
|
|
assertFileExists home-files/.xsession
|
|
assertFileContent \
|
|
home-files/.xsession \
|
|
${./basic-xsession-expected.txt}
|
|
|
|
assertFileExists home-files/.config/systemd/user/setxkbmap.service
|
|
assertFileContent \
|
|
home-files/.config/systemd/user/setxkbmap.service \
|
|
${./basic-setxkbmap-expected.service}
|
|
'';
|
|
};
|
|
}
|