26 lines
No EOL
444 B
Nix
26 lines
No EOL
444 B
Nix
{ pkgs, ... }: {
|
|
services = {
|
|
sunshine = {
|
|
enable = true;
|
|
autoStart = true;
|
|
capSysAdmin = true;
|
|
openFirewall = true;
|
|
};
|
|
printing = {
|
|
enable = true;
|
|
drivers = with pkgs; [
|
|
hplip
|
|
hplipWithPlugin
|
|
];
|
|
};
|
|
};
|
|
|
|
programs = {
|
|
steam.enable = true;
|
|
gdk-pixbuf.modulePackages = [ pkgs.librsvg ];
|
|
appimage = {
|
|
enable = true;
|
|
binfmt = true;
|
|
};
|
|
};
|
|
} |