set up something working (hopefully)
This commit is contained in:
parent
4d919a6a11
commit
a21715b71a
21 changed files with 567 additions and 10 deletions
28
modules/vali/graphics/wms/i3wm.nix
Normal file
28
modules/vali/graphics/wms/i3wm.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ pkgs, lib, config, ...}
|
||||
{
|
||||
options = {
|
||||
i3.enable = lib.mkEnableOption "enable i3wm";
|
||||
};
|
||||
config = lib.mkIf config.i3wm.enable {
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
desktopManager = {
|
||||
xterm.enable = false;
|
||||
xfce = {
|
||||
enable = true;
|
||||
noDesktop = true;
|
||||
nableXfwm = false;
|
||||
};
|
||||
};
|
||||
displayManager.defaultSession="xfce+i3";
|
||||
windowManager.i3 = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs; [
|
||||
dmenu
|
||||
i3status
|
||||
i3lock
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue