mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-04 11:58:53 -05:00
12 lines
295 B
Nix
12 lines
295 B
Nix
{ inputs, pkgs, lib, config, ...}: {
|
|
options.desktop.i3.enable = lib.mkEnableOption "enables i3";
|
|
|
|
config = {
|
|
services.xserver = {
|
|
displayManager.startx.enable = true;
|
|
windowManager.i3 = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|