Last active
April 9, 2017 12:10
-
-
Save techhazard/91cdc46409b0e4d3af16412c14386b41 to your computer and use it in GitHub Desktop.
NixOS: Programmer dvorak
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# place this file in /etc/nixos/ and add | |
# ./programmer-dvorak.nix | |
# to /etc/nixos/configuration.nix in `imports` | |
{config, pkgs, ...}: | |
{ | |
# TTY settings | |
i18n = { | |
# luckily this also changes the keyboard layout at boot (for e.g full disk encryption passwords) | |
consoleKeyMap = "dvorak-programmer"; | |
}; | |
# GUI settings, this includes login screen | |
services.xserver.layout = "us"; | |
services.xserver.xkbVariant = "dvp"; | |
services.xserver.xkbOptions = "eurosign:e"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment