configured lockscreen

This commit is contained in:
Rouven Seifert 2023-01-21 19:03:24 +01:00
parent fd3f3dd2a7
commit c8bca81c12
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
7 changed files with 69 additions and 45 deletions

View file

@ -1,20 +0,0 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
xorg.xmodmap
];
# Configure keymap in X11
services.xserver.layout = "us";
services.xserver.xkbVariant = "dvorak-alt-intl";
# Port this to wayland TODO. doesn't even work with gdm lmao
#services.xserver.displayManager.setupCommands =
#"${pkgs.xorg.xmodmap}/bin/xmodmap ${pkgs.writeText "xkb-layout" ''
#keycode 108 = Mode_switch
#keycode 94 = Shift_L NoSymbol Shift_L
#keysym a = a A adiaeresis Adiaeresis
#keysym o = o O odiaeresis Odiaeresis
#keysym u = u U udiaeresis Udiaeresis
#keysym s = s S ssharp
#''}";
}

View file

@ -1,6 +0,0 @@
{ config, ... }:
{
# This is a fix for zsh in the home manager
# If you only enable it in home manager, some important files for completion are missing
programs.zsh.enable = true;
}