about summary refs log tree commit diff
path: root/home/wm/default.nix
blob: 92d450ad7a021332bf71393942490c8a8a0f3746 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ lib, ... }:
{
  imports = [ ./sway ./waybar ./mako ./swaylock ./wofi ./gammastep ./gnome ];
  options.my.home.wm = with lib; {
    windowManager = mkOption {
      type = with types; nullOr (enum [ "sway" ]);
      default = null;
      example = "sway";
      description = "Which window manager to use for home session";
    };
  };
}