mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 18:59:44 +01:00
21 lines
533 B
Nix
21 lines
533 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ ./sway-stubs.nix ];
|
||
|
|
||
|
wayland.windowManager.sway = {
|
||
|
enable = true;
|
||
|
package = config.lib.test.mkStubPackage { outPath = "@sway@"; };
|
||
|
# 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}
|
||
|
'';
|
||
|
}
|