srpnix/nixos/services.nix
2025-03-26 22:51:40 -04:00

38 lines
706 B
Nix

{ pkgs, lib, ... }:
{
systemd.packages = with pkgs; [
auto-cpufreq
];
programs.dconf.enable = true;
services.dbus = {
enable = true;
implementation = "broker";
};
services.fwupd.enable = true;
services.fwupd.daemonSettings.espLocation = lib.mkForce "/boot";
services.auto-cpufreq.enable = true;
environment.systemPackages = with pkgs; [
at-spi2-atk
qt6.qtwayland
psi-notify
playerctl
psmisc
ffmpeg_6-full
wl-screenrec
wl-clipboard
wl-clip-persist
xdg-utils
wtype
wlrctl
waybar
rofi-wayland
dunst
wlogout
];
}