blob: ecf8bf312dc55736b292aa9a7d566904b5039fd8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ lib, ... }:
{
imports = [ ./sway ./waybar ./mako ./swaylock ./wofi ./gammastep ];
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";
};
};
}
|