diff --git a/hosts/laptop/default.nix b/hosts/laptop/default.nix index 929e2b0..93a811b 100644 --- a/hosts/laptop/default.nix +++ b/hosts/laptop/default.nix @@ -12,7 +12,6 @@ imports = [ ../../modules ./hardware.nix - ./unfree.nix inputs.home-manager.nixosModules.default ]; } diff --git a/hosts/laptop/unfree.nix b/hosts/laptop/unfree.nix deleted file mode 100644 index 0d1d679..0000000 --- a/hosts/laptop/unfree.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ pkgs, lib, ... }: -{ - environment.systemPackages = with pkgs; [ - teams - ]; - nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ - "teams" - ]; - -} -