2021-09-14 20:55:50 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2021-11-18 17:49:00 +01:00
|
|
|
imports = [ ./apps ./bspwm ./polybar ./gtk.nix ];
|
2021-09-29 13:36:11 +02:00
|
|
|
home-manager.users.moritz = { services.unclutter.enable = true; };
|
2022-01-21 22:10:09 +01:00
|
|
|
# Remap capslock to esc and shift + capslock to capslock
|
|
|
|
services.xserver.xkbOptions =
|
|
|
|
"terminate:ctrl_alt_bksp,caps:escape_shifted_capslock";
|
2021-09-14 20:55:50 +02:00
|
|
|
}
|