feat(xfce): add

This commit is contained in:
Kat Inskip 2024-04-06 11:21:36 -07:00
parent d37bd2c669
commit 4932e4fd0d
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
34 changed files with 490 additions and 203 deletions

View file

@ -0,0 +1,25 @@
{ pkgs, ... }: {
services.xserver = {
enable = true;
libinput.touchpad = {
tappingButtonMap = "lrm";
clickMethod = "clickfinger";
};
desktopManager = {
xterm.enable = false;
xfce.enable = true;
};
displayManager.gdm.enable = true;
displayManager.defaultSession = "xfce";
xkbOptions = "ctrl:nocaps";
};
programs.xfconf.enable = true;
environment.systemPackages = with pkgs; [
xfce.xfce4-pulseaudio-plugin
xfce.xfce4-whiskermenu-plugin
xclip
];
services.colord.enable = true;
}