fix: declare unfree packages

This commit is contained in:
Guz
2026-03-19 15:45:06 -03:00
parent bd1976f48f
commit 1935a87fae

View File

@@ -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;