aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-04-10 16:58:37 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-04-10 16:58:37 +0200
commit722d3e6b26c6232df3396c44ebe4c99bf9807124 (patch)
treeb471fceb2391b359c67f8a4f5f73b3846238e00d
parent9c53d45a1f3ccc9672fbcb6e0922a300ec965caf (diff)
Configure x11 and tty to also use the czech qwertz keyboard
-rw-r--r--home/rices/schrottkatze/system.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/home/rices/schrottkatze/system.nix b/home/rices/schrottkatze/system.nix
index 3ce48eb..13e1516 100644
--- a/home/rices/schrottkatze/system.nix
+++ b/home/rices/schrottkatze/system.nix
@@ -1,10 +1,18 @@
-{pkgs, lib, ...}: {
+{
+ pkgs,
+ lib,
+ ...
+}: {
# Desktop environment - Niri compositor
programs.niri.enable = true;
# Default session
services.displayManager.defaultSession = "niri";
+ services.xserver.xkb = {
+ layout = "cz";
+ options = "eurosign:e,caps:escape";
+ };
# Polkit fix for Niri
security.polkit.enable = true;
systemd.user.services.niri-flake-polkit.enable = false;