feat: in tree changes

This commit is contained in:
Kat Inskip 2025-02-16 00:14:29 -08:00
parent 185833d1fb
commit d60c09d981
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
32 changed files with 339 additions and 155 deletions

View file

@ -0,0 +1,26 @@
{pkgs, ...}: {
services = {
gnome.gnome-keyring.enable = true;
xserver = {
enable = true;
libinput.touchpad = {
tappingButtonMap = "lrm";
clickMethod = "clickfinger";
};
windowManager = {
openbox.enable = true;
};
displayManager.defaultSession = "none+openbox";
xkbOptions = "ctrl:nocaps";
};
colord.enable = true;
};
programs.xfconf.enable = true;
environment.systemPackages = with pkgs; [
menumaker
xclip
obconf
numix-gtk-theme
];
}