mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
home.stateVersion = "22.11";
|
|
|
|
programs.wlogout = {
|
|
package = config.lib.test.mkStubPackage { outPath = "@wlogout@"; };
|
|
enable = true;
|
|
layout = [
|
|
{
|
|
label = "shutdown";
|
|
action = "systemctl poweroff";
|
|
text = "Shutdown";
|
|
keybind = "s";
|
|
}
|
|
{
|
|
label = "hibernate";
|
|
action = "systemctl hibernate";
|
|
text = "Hibernate";
|
|
keybind = "h";
|
|
height = 0.5;
|
|
width = 0.5;
|
|
}
|
|
{
|
|
label = "suspend";
|
|
action = "systemctl suspend";
|
|
text = "Suspend";
|
|
keybind = "u";
|
|
circular = true;
|
|
}
|
|
{
|
|
label = "exit";
|
|
action = "swaymsg exit";
|
|
text = "Exit";
|
|
keybind = "e";
|
|
}
|
|
{
|
|
label = "reboot";
|
|
action = "systemctl reboot";
|
|
text = "Reboot";
|
|
keybind = "r";
|
|
}
|
|
{
|
|
label = "lock";
|
|
action = "gtklock";
|
|
text = "Lock";
|
|
keybind = "l";
|
|
}
|
|
];
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/wlogout/style.css
|
|
assertFileContent \
|
|
home-files/.config/wlogout/layout \
|
|
${./layout-multiple-expected.json}
|
|
'';
|
|
};
|
|
}
|