Files
nixos/modules/programs/default.nix
2026-02-19 09:12:40 +01:00

32 lines
537 B
Nix

{
pkgs,
gamingSystem,
currentSystemDe,
...
}:
{
programs = {
gamescope = {
enable = true;
capSysNice = true;
};
steam =
if gamingSystem then
{
enable = true;
remotePlay.openFirewall = true;
}
else
{ };
gnupg.agent = {
enable = true;
pinentryPackage = pkgs.pinentry-tty;
enableSSHSupport = true;
};
nh = {
enable = true;
};
hyprland.enable = if currentSystemDe == "hyprland" then true else false;
};
}