From 19e1c3b9c7dec20e2db7d8dedd63cbf5fbed2f21 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Tue, 19 Mar 2024 00:08:02 +0100 Subject: [PATCH] cleanup #2 thanks raf --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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";