mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
Add i3
This commit is contained in:
parent
a1ab1870a4
commit
aa3a57cd68
1 changed files with 15 additions and 0 deletions
15
modules/i3/default.nix
Normal file
15
modules/i3/default.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ inputs, pkgs, lib, config, ...}: {
|
||||
|
||||
options.i3.enable = lib.mkEnableOption "enables i3";
|
||||
|
||||
config = lib.mkIf config.i3.enable {
|
||||
xserver = {
|
||||
enable = true;
|
||||
windowManager.i3 = {
|
||||
enable = true;
|
||||
configFile = ./i3.config;
|
||||
};
|
||||
displayManager.lightdm.enable = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue