aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/services/window-managers/sway/sway-post-2003.nix
blob: 3eab6538e426b074f0f21062e64fc8a556c1f7f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ config, lib, pkgs, ... }:

with lib;

{
  config = {
    home.stateVersion = "20.09";

    wayland.windowManager.sway = {
      enable = true;
      package = pkgs.runCommandLocal "dummy-package" { } "mkdir $out" // {
        outPath = "@sway";
      };
      # overriding findutils causes issues
      config.menu = "${pkgs.dmenu}/bin/dmenu_run";
    };

    nixpkgs.overlays = [
      (self: super: {
        dummy-package = super.runCommandLocal "dummy-package" { } "mkdir $out";
        dmenu = self.dummy-package // { outPath = "@dmenu@"; };
        rxvt-unicode-unwrapped = self.dummy-package // {
          outPath = "@rxvt-unicode-unwrapped@";
        };
        i3status = self.dummy-package // { outPath = "@i3status@"; };
      })
    ];

    nmt.script = ''
      assertFileExists home-files/.config/sway/config
      assertFileContent home-files/.config/sway/config \
        ${./sway-default.conf}
    '';
  };
}