aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--flake.lock37
-rw-r--r--flake.nix7
-rw-r--r--nix/flake/hosts.nix4
3 files changed, 1 insertions, 47 deletions
diff --git a/flake.lock b/flake.lock
index d8422f4..bbca7e8 100644
--- a/flake.lock
+++ b/flake.lock
@@ -38,26 +38,6 @@
"type": "github"
}
},
- "firefox-darwin": {
- "inputs": {
- "nixpkgs": [
- "nixpkgs"
- ]
- },
- "locked": {
- "lastModified": 1726188822,
- "narHash": "sha256-OWLnIptZTloHm5JnW581xpE86CU85mQD+kv32mskiwA=",
- "owner": "bandithedoge",
- "repo": "nixpkgs-firefox-darwin",
- "rev": "15da9b0475f71a94d156cb8b635d5e439a7f99bc",
- "type": "github"
- },
- "original": {
- "owner": "bandithedoge",
- "repo": "nixpkgs-firefox-darwin",
- "type": "github"
- }
- },
"flake-compat": {
"flake": false,
"locked": {
@@ -212,21 +192,6 @@
"type": "github"
}
},
- "nur": {
- "locked": {
- "lastModified": 1726242279,
- "narHash": "sha256-smoFGC/PKmqZJPXtsx/jFLIYimMF0nNZ71y8maBSVVw=",
- "owner": "nix-community",
- "repo": "NUR",
- "rev": "b70a214f8692f4133993cbb2eab1fff3fe16af8b",
- "type": "github"
- },
- "original": {
- "owner": "nix-community",
- "repo": "NUR",
- "type": "github"
- }
- },
"pre-commit-hooks": {
"inputs": {
"flake-compat": "flake-compat",
@@ -254,12 +219,10 @@
"inputs": {
"darwin": "darwin",
"devshell": "devshell",
- "firefox-darwin": "firefox-darwin",
"flake-parts": "flake-parts",
"futils": "futils",
"home-manager": "home-manager",
"nixpkgs": "nixpkgs_2",
- "nur": "nur",
"pre-commit-hooks": "pre-commit-hooks",
"treefmt-nix": "treefmt-nix"
}
diff --git a/flake.nix b/flake.nix
index 0ceed11..33da294 100644
--- a/flake.nix
+++ b/flake.nix
@@ -19,13 +19,6 @@
inputs.nixpkgs.follows = "nixpkgs";
};
- firefox-darwin = {
- url = "github:bandithedoge/nixpkgs-firefox-darwin";
- inputs.nixpkgs.follows = "nixpkgs";
- };
-
- nur = { url = "github:nix-community/NUR"; };
-
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
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
];
}
];