2021-04-02 21:03:29 +02:00
|
|
|
{ lib, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./i3.nix
|
2021-04-04 21:28:34 +02:00
|
|
|
./i3bar.nix
|
2021-04-04 21:28:44 +02:00
|
|
|
./rofi.nix
|
2021-04-02 21:03:29 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
options.my.home.wm = with lib; {
|
|
|
|
windowManager = mkOption {
|
|
|
|
type = with types; nullOr (enum [ "i3" ]);
|
|
|
|
default = null;
|
|
|
|
example = "i3";
|
|
|
|
description = "Which window manager to use for home session";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|