From 509a430cf0877a2aef5d7ecff99d3b9ecf4400d1 Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Fri, 14 Mar 2025 22:16:53 -0300 Subject: [PATCH] refactor: move megasync allowUnfreePredicate to guz home --- home/guz/configuration.nix | 1 + hosts/battleship/configuration.nix | 5 ----- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/home/guz/configuration.nix b/home/guz/configuration.nix index ee5a168..9c7b351 100644 --- a/home/guz/configuration.nix +++ b/home/guz/configuration.nix @@ -30,6 +30,7 @@ nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "davinci-resolve" + "megasync" "steam" "steam-unwrapped" "xow_dongle-firmware" diff --git a/hosts/battleship/configuration.nix b/hosts/battleship/configuration.nix index 7773723..022772a 100644 --- a/hosts/battleship/configuration.nix +++ b/hosts/battleship/configuration.nix @@ -30,9 +30,4 @@ boot.extraModprobeConfig = '' options bluetooth disable_ertm=Y ''; - - nixpkgs.config.allowUnfreePredicate = pkg: - builtins.elem (lib.getName pkg) [ - "megasync" - ]; }