1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-04 20:33:27 +02:00
home-manager/tests/modules/misc/xsession/keyboard-without-layout.nix
2020-02-02 01:07:28 +01:00

37 lines
877 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
home.stateVersion = "19.09";
home.homeDirectory = "/test-home";
home.keyboard = { options = [ "ctrl:nocaps" "altwin:no_win" ]; };
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/.config/systemd/user/setxkbmap.service
assertFileContent \
home-files/.config/systemd/user/setxkbmap.service \
${./keyboard-without-layout-expected.service}
'';
};
}