mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
11 lines
287 B
Nix
11 lines
287 B
Nix
{ pkgs, lib, config, ... }: {
|
|
options = {
|
|
mods.xorg.enable = lib.mkEnableOption "enables xorg";
|
|
};
|
|
|
|
config = lib.mkIf config.mods.xorg.enable {
|
|
services.xserver.enable = true;
|
|
services.xserver.xkb.layout = "us";
|
|
services.xserver.xkb.options = "caps:escape";
|
|
};
|
|
}
|