2020-08-04 13:45:45 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
{
|
|
|
|
imports = [ ./sway-stubs.nix ];
|
2020-08-04 13:45:45 +02:00
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
wayland.windowManager.sway = {
|
|
|
|
enable = true;
|
|
|
|
package = config.lib.test.mkStubPackage { outPath = "@sway@"; };
|
2023-11-09 19:19:45 +01:00
|
|
|
checkConfig = false;
|
2021-09-26 11:08:45 +02:00
|
|
|
# overriding findutils causes issues
|
|
|
|
config.menu = "${pkgs.dmenu}/bin/dmenu_run";
|
2020-08-04 13:45:45 +02:00
|
|
|
};
|
2021-09-26 11:08:45 +02:00
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.config/sway/config
|
2022-07-07 19:03:58 +02:00
|
|
|
assertFileContent $(normalizeStorePaths home-files/.config/sway/config) \
|
2021-09-26 11:08:45 +02:00
|
|
|
${./sway-default.conf}
|
2023-06-10 12:10:40 +02:00
|
|
|
|
|
|
|
assertFileExists home-files/.config/systemd/user/sway-session.target
|
|
|
|
assertFileContent home-files/.config/systemd/user/sway-session.target \
|
|
|
|
${./sway-default.target}
|
2021-09-26 11:08:45 +02:00
|
|
|
'';
|
2020-08-04 13:45:45 +02:00
|
|
|
}
|