chore!(homix): update nixpkgs

Also rename `lib` to `util` to avoid confusion
This commit is contained in:
reo101 2023-04-15 18:09:55 +03:00
parent fd854dcf7c
commit cc58835189
Signed by: reo101
GPG key ID: 675AA7EF13964ACB
4 changed files with 85 additions and 68 deletions

View file

@ -23,7 +23,7 @@
# Home Manager
home-manager = {
url = "github:nix-community/home-manager/release-22.11";
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
@ -77,8 +77,9 @@
} @ inputs:
let
inherit (self) outputs;
util = import ./util { inherit inputs outputs; };
in
with (import ./lib { inherit inputs outputs; }); rec {
with util; rec {
# Packages (`nix build`)
packages = forEachPkgs (pkgs:
import ./pkgs { inherit pkgs; }