depot/third_party/home-manager/tests/modules/services/window-managers/spectrwm/spectrwm-simple-config.nix
Default email 2eafb8192e Project import generated by Copybara.
GitOrigin-RevId: 176e455371a8371586e8a3ff0d56ee9f3ca2324e
2023-01-10 02:35:00 -07:00

25 lines
542 B
Nix

{ ... }:
{
xsession.windowManager.spectrwm = {
enable = true;
settings = {
bar_enabled = true;
bar_format = "+S [+R:+I] %a %b %d [%R]";
bar_justify = "center";
modkey = "Mod4";
};
programs = { term = "alacritty"; };
bindings = { term = "MOD+Shift+Return"; };
unbindings = [ "MOD+Return" ];
};
test.stubs.spectrwm = { };
nmt.script = ''
assertFileContent \
home-files/.config/spectrwm/spectrwm.conf ${
./spectrwm-simple-config-expected-spectrwm.conf
}
'';
}