nixos-configs/apps/default.nix

13 lines
165 B
Nix
Raw Normal View History

{
inputs,
pkgs,
...
}: let
mkApp = file: {
program = pkgs.callPackage file ({} // inputs);
type = "app";
};
in {
updateFlake = mkApp ./update;
}