26 lines
371 B
Nix
26 lines
371 B
Nix
{ pkgs, ... }: {
|
|
programs = {
|
|
dconf.enable = true;
|
|
light.enable = true;
|
|
xwayland.enable = true;
|
|
};
|
|
|
|
# Battery saver and dbus
|
|
services = {
|
|
tlp.enable = true;
|
|
dbus.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
wl-clipboard
|
|
wdisplays
|
|
clipman
|
|
libnotify
|
|
grim
|
|
slurp
|
|
swappy
|
|
jq
|
|
lm_sensors
|
|
];
|
|
}
|