2023-06-10 12:10:40 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [ ./sway-stubs.nix ];
|
|
|
|
|
|
|
|
wayland.windowManager.sway = {
|
|
|
|
enable = true;
|
|
|
|
package = config.lib.test.mkStubPackage { outPath = "@sway@"; };
|
2023-11-09 19:19:45 +01:00
|
|
|
checkConfig = false;
|
2023-06-10 12:10:40 +02:00
|
|
|
# overriding findutils causes issues
|
|
|
|
config.menu = "${pkgs.dmenu}/bin/dmenu_run";
|
|
|
|
|
|
|
|
systemd.xdgAutostart = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.config/systemd/user/sway-session.target
|
|
|
|
assertFileContent home-files/.config/systemd/user/sway-session.target \
|
|
|
|
${./sway-systemd-autostart.target}
|
|
|
|
'';
|
|
|
|
}
|