Continue implementing basic features.

This commit is contained in:
R-VdP 2023-02-02 17:31:10 +00:00
parent fbe9f2eabb
commit f784f06107
No known key found for this signature in database
6 changed files with 244 additions and 27 deletions

View file

@ -58,9 +58,10 @@
modules = [
./nix/modules
];
inherit (self.packages.${system}) service-manager;
};
packages = rec {
packages = {
service-manager =
pkgs.rustPlatform.buildRustPackage
{
@ -74,7 +75,7 @@
cargoLock.lockFile = ./Cargo.lock;
};
default = service-manager;
default = self.packages.${system}.service-manager;
};
devShells.default = pkgs.devshell.mkShell {
packages = with pkgs; [