mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-10 07:58:30 +01:00
30 lines
469 B
Nix
30 lines
469 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
let
|
||
|
inherit (lib) singleton;
|
||
|
in
|
||
|
{
|
||
|
home-manager.sharedModules = singleton {
|
||
|
services.picom.enable = true;
|
||
|
services.dunst.enable = true;
|
||
|
};
|
||
|
|
||
|
services = {
|
||
|
xserver = {
|
||
|
displayManager.startx.enable = true;
|
||
|
windowManager.dwm.enable = true;
|
||
|
};
|
||
|
|
||
|
libinput = {
|
||
|
touchpad = {
|
||
|
naturalScrolling = true;
|
||
|
accelProfile = "flat";
|
||
|
};
|
||
|
|
||
|
mouse = {
|
||
|
accelProfile = "flat";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|