aerial: steam!

This commit is contained in:
41666 2023-12-22 17:33:47 -05:00
parent 6a8082893d
commit 524f13e541
3 changed files with 21 additions and 2 deletions

View file

@ -8,7 +8,8 @@
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
transmission-gtk qbittorrent
spotify
]; ];
programs.kitty.settings.font_size = 12; programs.kitty.settings.font_size = 12;

View file

@ -1,5 +1,11 @@
{ ... }: { { pkgs, ... }: {
programs.steam = { programs.steam = {
enable = true; enable = true;
package = pkgs.steam-small;
}; };
environment.systemPackages = with pkgs; [
steamcmd
steam-tui
];
} }

View file

@ -27,4 +27,16 @@
networking.firewall.allowedTCPPorts = [ 42069 ]; networking.firewall.allowedTCPPorts = [ 42069 ];
networking.firewall.allowedUDPPorts = [ 42069 ]; networking.firewall.allowedUDPPorts = [ 42069 ];
networking.nameservers = [ "1.1.1.1#one.one.one.one" "1.0.0.1#one.one.one.one" ];
services.resolved = {
enable = true;
dnssec = "true";
domains = [ "~." ];
fallbackDns = [ "1.1.1.1#one.one.one.one" "1.0.0.1#one.one.one.one" ];
extraConfig = ''
DNSOverTLS=yes
'';
};
} }