nix-config/home/wm/default.nix

18 lines
321 B
Nix
Raw Normal View History

{ lib, ... }:
{
imports = [
./i3.nix
2021-04-04 21:28:34 +02:00
./i3bar.nix
2021-04-04 21:28:44 +02:00
./rofi.nix
];
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";
};
};
}