common: profiles: migrate wm

This commit is contained in:
Bruno BELANYI 2024-01-03 17:05:37 +00:00
parent f85ecf2d9b
commit 76a4ece3a9
4 changed files with 39 additions and 32 deletions

View file

@ -2,7 +2,6 @@
{ ... }:
{
imports = [
./wm
./x
];
}

View file

@ -1,31 +0,0 @@
{ 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";
# Screenshot tool
my.home.flameshot.enable = true;
# Auto disk mounter
my.home.udiskie.enable = true;
# udiskie fails if it can't find this dbus service
services.udisks2.enable = true;
# Ensure i3lock can actually unlock the session
security.pam.services.i3lock.enable = true;
})
];
}