parent
320b74fa81
commit
b1f14470ac
2 changed files with 12 additions and 0 deletions
|
@ -23,5 +23,6 @@
|
||||||
type = "app";
|
type = "app";
|
||||||
program = "${flake.packages."skeleton-web:exe:site"}/bin/site";
|
program = "${flake.packages."skeleton-web:exe:site"}/bin/site";
|
||||||
};
|
};
|
||||||
|
devShell = pkgs.callPackage ./shell.nix {};
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
11
shell.nix
Normal file
11
shell.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
pkgs ? import <nixpkgs> {},
|
||||||
|
mkShell,
|
||||||
|
}:
|
||||||
|
with pkgs;
|
||||||
|
mkShell {
|
||||||
|
buildInputs = [
|
||||||
|
nix # Powerful package manager, makes packaging reliable & reproducible
|
||||||
|
tea # Gitea official CLI client
|
||||||
|
];
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue