profiles: add wm
This commit is contained in:
parent
12b3397a20
commit
1c2193d698
|
@ -3,5 +3,6 @@
|
|||
{
|
||||
imports = [
|
||||
./bluetooth.nix
|
||||
./wm.nix
|
||||
];
|
||||
}
|
||||
|
|
23
profiles/wm.nix
Normal file
23
profiles/wm.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ config, lib, ... }:
|
||||
let
|
||||
cfg = config.my.profiles.wm;
|
||||
in
|
||||
{
|
||||
options.my.profiles.wm = with lib; {
|
||||
windowManager = mkOption {
|
||||
type = with types; nullOr (enum [ "i3" ]);
|
||||
default = null;
|
||||
example = "i3";
|
||||
description = "Which window manager to use";
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkMerge [
|
||||
(lib.mkIf (cfg.windowManager == "i3") {
|
||||
# Enable i3
|
||||
services.xserver.windowManager.i3.enable = true;
|
||||
# i3 settings
|
||||
my.home.wm.windowManager = "i3";
|
||||
})
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue