mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-26 00:24:17 -05:00
13 lines
345 B
Nix
13 lines
345 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;
|
|
configFile = ~/.config/i3/config;
|
|
};
|
|
};
|
|
};
|
|
}
|