NixOS-Config/nixos/desktop/wayland.nix

26 lines
369 B
Nix
Raw Normal View History

2024-08-24 22:16:51 -04:00
{pkgs, ...}: {
programs = {
dconf.enable = true;
light.enable = true;
2024-09-02 19:07:17 -04:00
xwayland.enable = true;
2024-08-24 22:16:51 -04:00
};
2024-09-05 06:00:11 -04:00
# Battery saver and dbus
services = {
tlp.enable = true;
dbus.enable = true;
};
2024-09-02 19:07:17 -04:00
2024-08-24 22:16:51 -04:00
environment.systemPackages = with pkgs; [
wl-clipboard
wdisplays
clipman
libnotify
grim
slurp
swappy
jq
lm_sensors
];
}