deploy-rs: use application from nixpkgs

This commit is contained in:
Motiejus Jakštys 2023-09-15 15:11:01 +03:00
parent 2061294171
commit 20832bc562
1 changed files with 2 additions and 4 deletions

View File

@ -201,7 +201,7 @@
in {
apps.deploy-rs = {
type = "app";
program = "${deploy-rs.packages."${system}".default}/bin/deploy";
program = "${pkgs.deploy-rs.default}/bin/deploy";
};
devShells.default = with pkgs;
mkShell {
@ -209,11 +209,9 @@
pkgs.rage
pkgs.ssh-to-age
pkgs.age-plugin-yubikey
#pkgs.borgbackup
pkgs.deploy-rs
agenix.packages.${system}.agenix
deploy-rs.packages.${system}.deploy-rs
];
};