1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 11:53:27 +02:00
home-manager/tests/modules/misc/xsession/basic.nix

41 lines
1010 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
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 // {
2020-02-02 00:39:17 +01:00
setxkbmap = super.xorg.setxkbmap // { outPath = "@setxkbmap@"; };
};
2020-02-02 00:39:17 +01:00
})
];
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}
'';
};
}