mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat(xfce): add
This commit is contained in:
parent
d37bd2c669
commit
4932e4fd0d
34 changed files with 490 additions and 203 deletions
25
nixos/environments/xfce/xfce.nix
Normal file
25
nixos/environments/xfce/xfce.nix
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue