Refactor flake.nix

This commit is contained in:
Gabriel Arazas 2022-01-07 11:09:32 +08:00
parent 9ab450a741
commit 4e7338686e

View File

@ -29,7 +29,7 @@
rust-overlay.inputs.nixpkgs.follows = "nixpkgs"; rust-overlay.inputs.nixpkgs.follows = "nixpkgs";
}; };
outputs = inputs@{ self, nixpkgs, home-manager, ... }: outputs = inputs@{ self, nixpkgs, ... }:
let let
# The order here is important(?). # The order here is important(?).
overlays = [ overlays = [
@ -72,7 +72,7 @@
# All of the important flakes will be included. # All of the important flakes will be included.
nixpkgs.flake = nixpkgs; nixpkgs.flake = nixpkgs;
home-manager.flake = home-manager; home-manager.flake = inputs.home-manager;
agenix.flake = inputs.agenix; agenix.flake = inputs.agenix;
nur.flake = inputs.nur; nur.flake = inputs.nur;
}; };