update
This commit is contained in:
parent
403c91ce20
commit
13f0aa60ee
3 changed files with 12 additions and 11 deletions
17
flake.nix
17
flake.nix
|
@ -14,14 +14,15 @@
|
|||
flake-parts.lib.mkFlake {inherit inputs;} {
|
||||
systems = nixpkgs.lib.systems.flakeExposed;
|
||||
|
||||
flake = {
|
||||
lib = nixpkgs.lib.extend (import ./lib.nix);
|
||||
|
||||
nixosConfigurations = self.lib.genNixosConfigurations {inherit inputs;};
|
||||
};
|
||||
|
||||
perSystem = {pkgs, ...}: {
|
||||
packages.default = pkgs.callPackage ./package.nix {};
|
||||
perSystem = {lib, pkgs, ...}: {
|
||||
packages = let
|
||||
packages = lib.packagesFromDirectoryRecursive {
|
||||
inherit (pkgs) callPackage;
|
||||
directory = ./packages;
|
||||
};
|
||||
in packages // {
|
||||
default = packages.helix;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue