this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(ryzentower): add Steam back

Welp.

Khue Doan b2c4dc57 f04a9628

+13 -3
+13 -3
hosts/ryzentower/default.nix
··· 1 - { pkgs, ... }: 1 + { lib, ... }: 2 2 3 3 { 4 4 imports = [ 5 5 ./hardware-configuration.nix 6 6 ]; 7 7 8 + networking = { 9 + hostName = "ryzentower"; 10 + }; 11 + 8 12 hardware = { 9 13 graphics = { 10 14 enable32Bit = true; ··· 14 18 nixpkgs = { 15 19 config = { 16 20 rocmSupport = true; 21 + allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ 22 + "steam" 23 + "steam-unwrapped" 24 + ]; 17 25 }; 18 26 }; 19 27 20 - networking = { 21 - hostName = "ryzentower"; 28 + programs = { 29 + steam = { 30 + enable = true; 31 + }; 22 32 }; 23 33 24 34 services = {