mirror of
https://codeberg.org/muon/home.git
synced 2026-03-08 03:25:16 +00:00
Add kb variant
This commit is contained in:
parent
600496e419
commit
5bdf9e3a2c
1 changed files with 24 additions and 17 deletions
|
|
@ -1,5 +1,9 @@
|
|||
{ pkgs, lib, config, ... }:
|
||||
let
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: let
|
||||
monitorModule = lib.types.submodule {
|
||||
options = {
|
||||
name = lib.mkOption {
|
||||
|
|
@ -28,11 +32,14 @@ in {
|
|||
"multi-user.target"
|
||||
"network-online.target"
|
||||
];
|
||||
|
||||
in lib.mkIf config.mods.xorg.enable {
|
||||
in
|
||||
lib.mkIf config.mods.xorg.enable {
|
||||
services.xserver.enable = true;
|
||||
services.xserver.xkb.layout = "us";
|
||||
services.xserver.xkb.options = "caps:escape";
|
||||
services.xserver.xkb = {
|
||||
layout = "us";
|
||||
variant = "altgr-intl";
|
||||
options = "caps:escape";
|
||||
};
|
||||
services.xserver.dpi = 96;
|
||||
|
||||
# services.xserver.displayManager.gdm.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue