28 lines
659 B
Nix
28 lines
659 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
|
||
|
dummy-package = pkgs.runCommandLocal "dummy-package" { } "mkdir $out";
|
||
|
|
||
|
in {
|
||
|
config = {
|
||
|
wayland.windowManager.sway = {
|
||
|
enable = true;
|
||
|
package = dummy-package // { outPath = "@sway"; };
|
||
|
# overriding findutils causes issues
|
||
|
config.menu = "${pkgs.dmenu}/bin/dmenu_run";
|
||
|
config.defaultWorkspace = "workspace number 9";
|
||
|
};
|
||
|
|
||
|
nixpkgs.overlays = [ (import ./sway-overlay.nix) ];
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/sway/config
|
||
|
assertFileContent home-files/.config/sway/config \
|
||
|
${./sway-workspace-default-expected.conf}
|
||
|
'';
|
||
|
};
|
||
|
}
|