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;