2024-04-19 17:15:54 +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;
|
2024-04-19 17:15:54 +02:00
|
|
|
# overriding findutils causes issues
|
|
|
|
config.menu = "${pkgs.dmenu}/bin/dmenu_run";
|
|
|
|
|
|
|
|
systemd.variables = [ "XCURSOR_THEME" "XCURSOR_SIZE" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.config/sway/config
|
|
|
|
assertFileContent $(normalizeStorePaths home-files/.config/sway/config) \
|
|
|
|
${./sway-systemd-variables.conf}
|
|
|
|
'';
|
|
|
|
}
|