mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-19 18:52:29 -05:00
16 lines
236 B
Nix
16 lines
236 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.desktop.i3.enable {
|
|
services.xserver = {
|
|
displayManager.startx.enable = true;
|
|
windowManager.i3 = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|