From 0b0413c942f5c557eda4796c143e62289998ff4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Fri, 19 Jan 2024 19:55:03 +0100 Subject: [PATCH] fix: Allow steam (unfree) --- flake.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 0b7ec7f..a756369 100644 --- a/flake.nix +++ b/flake.nix @@ -80,7 +80,11 @@ home-config.overlays.nixneovim home-config.overlays.neovim-nightly ]; - pkgs = import nixpkgs { inherit system overlays; }; + config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ + "steam-original" + ]; + # config.allowUnfree = true; + pkgs = import nixpkgs { inherit system overlays config; }; in lib.nixosSystem {