From 524f13e541b62125f885fa649ee2aaf4e6902efc Mon Sep 17 00:00:00 2001 From: noe Date: Fri, 22 Dec 2023 17:33:47 -0500 Subject: [PATCH] aerial: steam! --- home-manager/noe/hosts/aerial.nix | 3 ++- nixos/features/steam.nix | 8 +++++++- nixos/hosts/aerial/default.nix | 12 ++++++++++++ 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/home-manager/noe/hosts/aerial.nix b/home-manager/noe/hosts/aerial.nix index cfb2a42..22b8573 100644 --- a/home-manager/noe/hosts/aerial.nix +++ b/home-manager/noe/hosts/aerial.nix @@ -8,7 +8,8 @@ ]; home.packages = with pkgs; [ - transmission-gtk + qbittorrent + spotify ]; programs.kitty.settings.font_size = 12; diff --git a/nixos/features/steam.nix b/nixos/features/steam.nix index 0baa203..ce9eed3 100644 --- a/nixos/features/steam.nix +++ b/nixos/features/steam.nix @@ -1,5 +1,11 @@ -{ ... }: { +{ pkgs, ... }: { programs.steam = { enable = true; + package = pkgs.steam-small; }; + + environment.systemPackages = with pkgs; [ + steamcmd + steam-tui + ]; } diff --git a/nixos/hosts/aerial/default.nix b/nixos/hosts/aerial/default.nix index a832287..9442136 100644 --- a/nixos/hosts/aerial/default.nix +++ b/nixos/hosts/aerial/default.nix @@ -27,4 +27,16 @@ networking.firewall.allowedTCPPorts = [ 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 + ''; + }; + }