diff options
Diffstat (limited to 'nix')
-rw-r--r-- | nix/flake/hosts.nix | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/nix/flake/hosts.nix b/nix/flake/hosts.nix index 836a26b..eaa0a45 100644 --- a/nix/flake/hosts.nix +++ b/nix/flake/hosts.nix @@ -1,6 +1,6 @@ { inputs, self, ... }: let - inherit (inputs) nixpkgs darwin home-manager firefox-darwin nur; + inherit (inputs) nixpkgs darwin home-manager; inherit (nixpkgs.lib) mkMerge; mkDarwinConfig = system: path: @@ -23,8 +23,6 @@ let path { nixpkgs.overlays = [ - firefox-darwin.overlay - nur.overlay ]; } ]; |