1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 20:43:34 +02:00
home-manager/tests/modules/services/window-managers/sway/sway-null-package.nix
Robert Helgesson cb09a968e9
tests: add option test.stubs
This option provides a more convenient way to overlay dummy packages.
It also adds a function `config.lib.test.mkStubPackage` that can,
e.g., be used for `package` options.
2021-09-26 23:26:38 +02:00

28 lines
670 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [ ./sway-stubs.nix ];
# Enables the default bar configuration
home.stateVersion = "20.09";
wayland.windowManager.sway = {
enable = true;
package = null;
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 home-files/.config/sway/config \
${./sway-null-package.conf}
'';
}