fix: Allow steam (unfree)

This commit is contained in:
Jalil David Salamé Messina 2024-01-19 19:55:03 +01:00
parent 35fc48289d
commit 0b0413c942
Signed by: jalil
GPG key ID: F016B9E770737A0B

View file

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