diff options
| author | seth <[email protected]> | 2023-09-09 01:17:38 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-09-09 01:17:38 -0400 |
| commit | df2c7b37fad633e473b648f9b21e250f28ab6a9f (patch) | |
| tree | a59656d040fe1c3877781e1d36e9892c5f30c81e | |
| parent | c7e8ade58a6e49ebd25c8245b576136c996f68cf (diff) | |
flake: reorganize pointless flake inputs
| -rw-r--r-- | flake.nix | 53 |
1 files changed, 26 insertions, 27 deletions
@@ -14,14 +14,6 @@ inputs.nixpkgs.follows = "nixpkgs"; }; - # this is just to avoid having multiple versions in flake.lock - agenix = { - url = "github:ryantm/agenix"; - inputs.nixpkgs.follows = "nixpkgs"; - inputs.darwin.follows = "darwin"; - inputs.home-manager.follows = "hm"; - }; - arkenfox = { url = "github:dwarfmaster/arkenfox-nixos"; inputs.nixpkgs.follows = "nixpkgs"; @@ -30,15 +22,6 @@ inputs.flake-utils.follows = "flake-utils"; }; - # ditto - crane = { - url = "github:ipetkov/crane"; - inputs.nixpkgs.follows = "nixpkgs"; - inputs.flake-compat.follows = "flake-compat"; - inputs.flake-utils.follows = "flake-utils"; - inputs.rust-overlay.follows = "rust-overlay"; - }; - deploy = { url = "github:serokell/deploy-rs"; inputs.nixpkgs.follows = "nixpkgs"; @@ -46,15 +29,6 @@ inputs.flake-compat.follows = "flake-compat"; }; - # ditto - flake-compat = { - url = "github:edolstra/flake-compat"; - flake = false; - }; - - # ditto - flake-utils.url = "github:numtide/flake-utils"; - parts = { url = "github:hercules-ci/flake-parts"; inputs.nixpkgs-lib.follows = "nixpkgs"; @@ -125,7 +99,32 @@ inputs.rust-overlay.follows = "rust-overlay"; }; - # ditto + # ------------------------------ + # -- these are just to avoid having multiple versions in flake.lock + # ------------------------------ + + agenix = { + url = "github:ryantm/agenix"; + inputs.nixpkgs.follows = "nixpkgs"; + inputs.darwin.follows = "darwin"; + inputs.home-manager.follows = "hm"; + }; + + flake-compat = { + url = "github:edolstra/flake-compat"; + flake = false; + }; + + flake-utils.url = "github:numtide/flake-utils"; + + crane = { + url = "github:ipetkov/crane"; + inputs.nixpkgs.follows = "nixpkgs"; + inputs.flake-compat.follows = "flake-compat"; + inputs.flake-utils.follows = "flake-utils"; + inputs.rust-overlay.follows = "rust-overlay"; + }; + rust-overlay = { url = "github:oxalica/rust-overlay"; inputs.nixpkgs.follows = "nixpkgs"; |
