Xorg package set removed, now aliases. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
27 lines
647 B
Nix
27 lines
647 B
Nix
{
|
|
config = {
|
|
home.stateVersion = "19.09";
|
|
|
|
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";
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/systemd/user/setxkbmap.service
|
|
assertFileContent \
|
|
home-files/.config/systemd/user/setxkbmap.service \
|
|
${./keyboard-without-layout-expected.service}
|
|
'';
|
|
};
|
|
}
|