From 1935a87faec59ddc1df97083e9afea14486314f9 Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Thu, 19 Mar 2026 15:45:06 -0300 Subject: [PATCH] fix: declare unfree packages --- hosts/battleship-mk2/configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hosts/battleship-mk2/configuration.nix b/hosts/battleship-mk2/configuration.nix index dd86148..9cf355c 100644 --- a/hosts/battleship-mk2/configuration.nix +++ b/hosts/battleship-mk2/configuration.nix @@ -1,5 +1,6 @@ { inputs, + lib, pkgs, ... }: { @@ -74,6 +75,12 @@ # Nix nix.settings.experimental-features = ["nix-command" "flakes"]; + nixpkgs.config.allowUnfreePredicate = pkg: + builtins.elem (lib.getName pkg) [ + "via" + "steam" + "steam-unwrapped" + ]; # Bootloader boot.loader.systemd-boot.enable = true;