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 ];
|
2022-02-07 14:24:24 +01:00
|
|
|
home-manager.users.moritz = {
|
|
|
|
services.unclutter.enable = true;
|
|
|
|
|
|
|
|
xdg = {
|
|
|
|
enable = true;
|
|
|
|
configFile = {
|
|
|
|
"wallpapers/" = {
|
|
|
|
source = ./wallpapers;
|
|
|
|
recursive = 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
|
|
|
}
|