diff options
author | Soispha <soispha@vhack.eu> | 2023-04-09 21:24:23 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-04-09 21:25:37 +0200 |
commit | d02e2e57b3748fae1ef22c58bda78471511d9dcc (patch) | |
tree | 125b1dd445c759b7f62907705092531bfd3cd09f /system/services/steam | |
parent | Feat(hm/conf): Add gpg support (diff) | |
download | nixos-config-d02e2e57b3748fae1ef22c58bda78471511d9dcc.tar.gz nixos-config-d02e2e57b3748fae1ef22c58bda78471511d9dcc.zip |
Style(treewide): Format
Diffstat (limited to 'system/services/steam')
-rw-r--r-- | system/services/steam/default.nix | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/system/services/steam/default.nix b/system/services/steam/default.nix index 916b3b15..aebd9c34 100644 --- a/system/services/steam/default.nix +++ b/system/services/steam/default.nix @@ -3,10 +3,11 @@ programs.steam = { enable = true; }; - nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ - "steam" - "steam-original" - "steam-runtime" - "steam-run" - ]; + nixpkgs.config.allowUnfreePredicate = pkg: + builtins.elem (lib.getName pkg) [ + "steam" + "steam-original" + "steam-runtime" + "steam-run" + ]; } |