mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
26 lines
544 B
Nix
26 lines
544 B
Nix
{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
|
|
];
|
|
}
|