37 lines
920 B
Nix
37 lines
920 B
Nix
|
{ config, lib, type, ... }:
|
||
|
let
|
||
|
cfg = config.my.profiles.wm;
|
||
|
|
||
|
applyWm = wm: configs: lib.mkIf (cfg.windowManager == wm) (lib.my.merge configs);
|
||
|
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 [
|
||
|
(applyWm "i3" [
|
||
|
(lib.optionalAttrs (type == "home") {
|
||
|
# i3 settings
|
||
|
my.home.wm.windowManager = "i3";
|
||
|
# Screenshot tool
|
||
|
my.home.flameshot.enable = true;
|
||
|
# Auto disk mounter
|
||
|
my.home.udiskie.enable = true;
|
||
|
})
|
||
|
|
||
|
(lib.optionalAttrs (type == "nixos") {
|
||
|
# Enable i3
|
||
|
services.xserver.windowManager.i3.enable = true;
|
||
|
# udiskie fails if it can't find this dbus service
|
||
|
services.udisks2.enable = true;
|
||
|
})
|
||
|
])
|
||
|
];
|
||
|
}
|