changes
This commit is contained in:
parent
77eccec635
commit
16ea2e2d7c
18 changed files with 407 additions and 15 deletions
18
flake.nix
18
flake.nix
|
@ -14,15 +14,17 @@
|
|||
flake-parts.lib.mkFlake {inherit inputs;} {
|
||||
systems = nixpkgs.lib.systems.flakeExposed;
|
||||
|
||||
perSystem = {pkgs, ...}: {
|
||||
devShells.default = pkgs.mkShellNoCC {
|
||||
packages = [
|
||||
(pkgs.writeShellApplication {
|
||||
name = "plow";
|
||||
perSystem = {
|
||||
pkgs,
|
||||
self',
|
||||
...
|
||||
}: {
|
||||
packages.plow = pkgs.callPackage ./plow {};
|
||||
|
||||
text = builtins.readFile ./plow.sh;
|
||||
})
|
||||
];
|
||||
devShells.default = pkgs.mkShellNoCC {
|
||||
PLOW_FROM = "./home";
|
||||
|
||||
packages = [self'.packages.plow];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue