22 lines
480 B
Nix
22 lines
480 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./apps ./bspwm ./polybar ./gtk.nix ];
|
|
home-manager.users.moritz = {
|
|
services.unclutter.enable = true;
|
|
|
|
xdg = {
|
|
enable = true;
|
|
configFile = {
|
|
"wallpapers/" = {
|
|
source = ./wallpapers;
|
|
recursive = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
# Remap capslock to esc and shift + capslock to capslock
|
|
services.xserver.xkbOptions =
|
|
"terminate:ctrl_alt_bksp,caps:escape_shifted_capslock";
|
|
}
|