home: wm: add i3

This is only the basic default configuration. The full configuration
will come later.

I am not a fan of `wm.windowManager`, I might rename that option at some
point.
This commit is contained in:
Bruno BELANYI 2021-04-02 19:03:29 +00:00
parent ff4745e1e6
commit ca48df5674
3 changed files with 31 additions and 0 deletions

View file

@ -14,6 +14,7 @@
./ssh.nix
./tmux.nix
./vim
./wm
./x
./xdg.nix
./zsh

15
home/wm/default.nix Normal file
View file

@ -0,0 +1,15 @@
{ 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";
};
};
}

15
home/wm/i3.nix Normal file
View file

@ -0,0 +1,15 @@
{ config, lib, ... }:
let
isEnabled = config.my.home.wm.windowManager == "i3";
in
{
config = lib.mkIf isEnabled {
xsession.windowManager.i3 = {
enable = true;
config = {
modifier = "Mod4"; # `Super` key
};
};
};
}