diff --git a/flake.nix b/flake.nix index 7edf5e6f..c1e611d3 100644 --- a/flake.nix +++ b/flake.nix @@ -8,9 +8,9 @@ } @ inputs: { # TODO steal this from raf when I have time and energy #lib = import (self + /lib) { inherit inputs; }; - lib = nixpkgs.lib; + inherit (nixpkgs) lib; - nixosConfigurations = import ./hosts { inherit nixpkgs inputs; }; + nixosConfigurations = import ./hosts { inherit inputs; }; }; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";