From 503c0f10768c9ba0ad38dfd49644e87003ca39f1 Mon Sep 17 00:00:00 2001 From: Charles Hall Date: Sun, 21 Apr 2024 17:15:02 -0700 Subject: [PATCH] flatten and sort all flake inputs --- flake.nix | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/flake.nix b/flake.nix index 29ceb3a6..9ac4e5f5 100644 --- a/flake.nix +++ b/flake.nix @@ -1,22 +1,12 @@ { inputs = { - nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable"; + attic.url = "github:zhaofengli/attic?ref=main"; + crane = { url = "github:ipetkov/crane?ref=master"; inputs.nixpkgs.follows = "nixpkgs"; }; + fenix = { url = "github:nix-community/fenix"; inputs.nixpkgs.follows = "nixpkgs"; }; + flake-compat = { url = "github:edolstra/flake-compat"; flake = false; }; flake-utils.url = "github:numtide/flake-utils"; nix-filter.url = "github:numtide/nix-filter"; - flake-compat = { - url = "github:edolstra/flake-compat"; - flake = false; - }; - - fenix = { - url = "github:nix-community/fenix"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - crane = { - url = "github:ipetkov/crane?ref=master"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - attic.url = "github:zhaofengli/attic?ref=main"; + nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable"; }; outputs =