about summary refs log tree commit diff stats
path: root/modules/home.legacy/wms/sway/default.nix
blob: bb3ddb49766f26ca84cfd527f7640c9880116f81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# also requires:
# security.polkit.enable = true;
{lib, ...}: {
  wayland.windowManager.sway = {
    enable = true;
    config = {
      modifier = "Mod4";
      # Use kitty as default terminal
      terminal = "kitty";
      startup = [
        # Launch Firefox on start
        {command = "firefox";}
      ];
    };
  };
}