diff options
author | polwex <polwex@sortug.com> | 2025-01-26 04:59:01 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-01-26 04:59:01 +0700 |
commit | fb39334bcdac65a1ff1d95e7e4db2e28eabcc2d6 (patch) | |
tree | d33193f5bac097f7cf0642c3041744eff09bdda2 /hosts/unfree.nix | |
parent | 44857f873bf0de923b9078b593391d4ff6908acb (diff) |
m
Diffstat (limited to 'hosts/unfree.nix')
-rw-r--r-- | hosts/unfree.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/hosts/unfree.nix b/hosts/unfree.nix index d3e889d..73c4a8a 100644 --- a/hosts/unfree.nix +++ b/hosts/unfree.nix @@ -1,9 +1,16 @@ -{pkgs, ...}: { +{ + pkgs, + inputs, + ... +}: { # allow unfree nixpkgs.config = { allowUnfree = true; + allowUnfreePredicate = _: true; chromium.enableWideVine = true; }; + + # https://stackoverflow.com/questions/77585228/how-to-allow-unfree-packages-in-nix-for-each-situation-nixos-nix-nix-wit environment.systemPackages = with pkgs; [ # opera spotify @@ -15,6 +22,7 @@ steamcmd steam-run protonup-qt + # inputs.claude-desktop.packages.x86_64-linux.claude-desktop ]; # fucking vscode requires this for github copilot |