aboutsummaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-04-09 21:24:23 +0200
committerSoispha <soispha@vhack.eu>2023-04-09 21:25:37 +0200
commitd02e2e57b3748fae1ef22c58bda78471511d9dcc (patch)
tree125b1dd445c759b7f62907705092531bfd3cd09f /system
parentFeat(hm/conf): Add gpg support (diff)
downloadnixos-config-d02e2e57b3748fae1ef22c58bda78471511d9dcc.zip
Style(treewide): Format
Diffstat (limited to 'system')
-rw-r--r--system/services/steam/default.nix13
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"
+ ];
}