depot/third_party/home-manager/tests/modules/programs/wlogout/layout-single.nix
Default email 75fa0ae5af Project import generated by Copybara.
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
2023-08-08 12:19:01 +02:00

27 lines
571 B
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";
}];
};
nmt.script = ''
assertPathNotExists home-files/.config/wlogout/style.css
assertFileContent \
home-files/.config/wlogout/layout \
${./layout-single-expected.json}
'';
};
}