refactor(flake): avoid imports

This commit is contained in:
Artur Manuel 2025-02-04 11:10:02 +00:00
commit b57b8151ed
7 changed files with 54 additions and 63 deletions

View file

@ -33,9 +33,8 @@
};
wallpkgs = {
type = "github";
owner = "amadaluzia";
owner = "notashelf";
repo = "wallpkgs";
ref = "docs-fixup";
inputs.nixpkgs.follows = "nixpkgs";
};
pankomacs = {
@ -65,16 +64,9 @@
};
};
};
outputs = inputs @ {
self,
flake-parts,
...
}: let
inherit ((import ./lib {inherit inputs self;}).flake) lib;
in
outputs = inputs @ {flake-parts, ...}:
flake-parts.lib.mkFlake {
inherit inputs;
specialArgs = {inherit lib;};
} {
systems = ["x86_64-linux"];
imports = [