1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2025-03-25 18:48:52 +01:00
parent 92f097cb82
commit 64596a073c
No known key found for this signature in database
13 changed files with 192 additions and 404 deletions

View file

@ -3,9 +3,7 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
devenv-root = {
url = "file+file:///dev/null";
flake = false;
@ -33,9 +31,13 @@
perSystem = {
pkgs,
self',
lib,
...
}: {
packages.plow = pkgs.callPackage ./plow {};
packages = lib.packagesFromDirectoryRecursive {
inherit (pkgs) callPackage;
directory = ./packages;
};
devenv.shells.default = {
devenv.root = let
@ -52,6 +54,7 @@
packages = [
self'.packages.plow
self'.packages.codeinit
];
};
};