Distuingish between configurations and program modifications
This commit is contained in:
parent
964b294300
commit
1afb00a3de
27 changed files with 48 additions and 44 deletions
23
configurations/base-x/default.nix
Normal file
23
configurations/base-x/default.nix
Normal 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;
|
||||
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue