1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 00:18:30 +02:00
home-manager/tests/modules/services/window-managers/sway/sway-default.nix

19 lines
445 B
Nix
Raw Normal View History

2020-08-04 13:45:45 +02:00
{ config, lib, pkgs, ... }:
{
imports = [ ./sway-stubs.nix ];
2020-08-04 13:45:45 +02:00
wayland.windowManager.sway = {
enable = true;
package = config.lib.test.mkStubPackage { outPath = "@sway@"; };
# overriding findutils causes issues
config.menu = "${pkgs.dmenu}/bin/dmenu_run";
2020-08-04 13:45:45 +02:00
};
nmt.script = ''
assertFileExists home-files/.config/sway/config
assertFileContent home-files/.config/sway/config \
${./sway-default.conf}
'';
2020-08-04 13:45:45 +02:00
}