refactor: move lib into flake module

This commit is contained in:
Felix Schröter 2024-01-30 20:09:08 +01:00
parent 99daa25dee
commit 6dda98201d
Signed by: felschr
GPG key ID: 671E39E6744C807D
3 changed files with 20 additions and 22 deletions

View file

@ -82,7 +82,8 @@ rec {
outputs = { self, nixpkgs, nixpkgs-unstable, ... }@inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" "aarch64-linux" ];
imports = [ ./pkgs/flake-module.nix ./lib ./overlays.nix ];
imports =
[ ./pkgs/flake-module.nix ./lib/flake-module.nix ./overlays.nix ];
flake = {
inherit nixConfig;