2024-03-18 11:58:34 +00:00
|
|
|
{ config, pkgs, ... }: {
|
|
|
|
|
|
|
|
programs.steam = {
|
|
|
|
enable = true;
|
|
|
|
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
|
|
|
|
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
|
|
|
|
};
|
|
|
|
programs.gnupg.agent = {
|
|
|
|
enable = true;
|
|
|
|
pinentryFlavor = "curses";
|
|
|
|
enableSSHSupport = true;
|
|
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
steam-run
|
|
|
|
xdg-utils
|
2024-03-21 14:51:35 +00:00
|
|
|
pass
|
2024-03-18 11:58:34 +00:00
|
|
|
xdg-desktop-portal
|
|
|
|
xdg-desktop-portal-gtk
|
|
|
|
unstable.zoom-us
|
|
|
|
neovim
|
|
|
|
git
|
|
|
|
gnupg
|
|
|
|
pinentry-rofi
|
|
|
|
pinentry
|
|
|
|
rofi-rbw-x11
|
|
|
|
rbw
|
|
|
|
nil
|
|
|
|
nixpkgs-fmt
|
2024-03-18 12:11:31 +00:00
|
|
|
curl
|
|
|
|
git
|
|
|
|
libnotify
|
|
|
|
usbutils
|
|
|
|
vim
|
|
|
|
wget
|
|
|
|
v4l-utils
|
|
|
|
nmap
|
|
|
|
|
2024-03-18 11:58:34 +00:00
|
|
|
];
|
|
|
|
systemd = {
|
|
|
|
user.services.polkit-gnome-authentication-agent-1 = {
|
|
|
|
description = "polkit-gnome-authentication-agent-1";
|
|
|
|
wantedBy = [ "graphical-session.target" ];
|
|
|
|
wants = [ "graphical-session.target" ];
|
|
|
|
after = [ "graphical-session.target" ];
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "simple";
|
|
|
|
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
|
|
|
|
Restart = "on-failure";
|
|
|
|
RestartSec = 1;
|
|
|
|
TimeoutStopSec = 10;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|