nixos-config/configurations/base-x.nix
Charlotte Van Petegem 8cdf4720d0
Update dependencies
2021-01-22 14:13:15 +01:00

25 lines
516 B
Nix

{ ... }:
{
services.xserver = {
enable = true;
displayManager.startx.enable = true;
libinput = {
enable = true;
touchpad = {
disableWhileTyping = true;
scrollMethod = "twofinger";
tapping = true;
tappingDragLock = true;
};
};
xkbVariant = "altgr-intl";
};
home-manager.users.charlotte = { pkgs, ... }: {
home.file.".xinitrc".text = "source ~/.xsession";
xsession = {
enable = true;
numlock.enable = true;
};
};
}