nix-flake/modules/system/misc/programs.nix
satr14 7b9ce69c76
Some checks failed
Activate Homelab Configuration / rebuild (push) Has been cancelled
LOCK IN: disable all distractions
2026-07-18 18:52:26 +07:00

27 lines
No EOL
460 B
Nix

{ pkgs, ... }: {
services = {
sunshine = {
enable = true;
autoStart = true;
capSysAdmin = true;
openFirewall = true;
};
printing = {
enable = true;
drivers = with pkgs; [
hplip
hplipWithPlugin
];
};
};
programs = {
# LOCK IN
# steam.enable = true;
gdk-pixbuf.modulePackages = [ pkgs.librsvg ];
appimage = {
enable = true;
binfmt = true;
};
};
}