Reorganize for zfs

This commit is contained in:
Charlotte Van Petegem 2020-05-23 09:59:32 +02:00
parent 2933964680
commit cfb48de40c
57 changed files with 817 additions and 492 deletions

23
configurations/base-x.nix Normal file
View file

@ -0,0 +1,23 @@
{ ... }:
{
services.xserver = {
enable = true;
displayManager.startx.enable = true;
libinput = {
enable = true;
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;
};
};
}