nix-config/home/wm/default.nix

16 lines
290 B
Nix
Raw Normal View History

{ lib, ... }:
{
imports = [
./i3.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";
};
};
}