1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-01 06:31:04 +01:00
home-manager/tests/modules/services/window-managers/sway/sway-null-package.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

35 lines
729 B
Nix

{
config,
lib,
pkgs,
...
}:
{
# Enables the default bar configuration
home.stateVersion = "20.09";
wayland.windowManager.sway = {
enable = true;
package = null;
checkConfig = false;
config.menu = "${pkgs.dmenu}/bin/dmenu_run";
};
assertions = [
{
assertion =
!lib.elem config.wayland.windowManager.sway.config.bars [
[ { } ]
[ ]
];
message = "The default Sway bars configuration should be set for this test (sway-null-package) to work.";
}
];
nmt.script = ''
assertFileExists home-files/.config/sway/config
assertFileContent $(normalizeStorePaths home-files/.config/sway/config) \
${./sway-null-package.conf}
'';
}