feat: created mapillary desktop uploader program config and installed for leyla

This commit is contained in:
Leyla Becker 2025-09-13 18:15:43 -05:00
parent ffcba0d714
commit 3bf3391eb9
3 changed files with 19 additions and 0 deletions

View file

@ -21,6 +21,7 @@
./vscode
./ungoogled-chromium.nix
./libreoffice.nix
./mapillary-uploader.nix
./inkscape.nix
./gimp.nix
./proxmark3.nix

View file

@ -0,0 +1,17 @@
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.programs.mapillary-uploader;
in {
options.programs.mapillary-uploader = {
enable = mkEnableOption "Mapillary Desktop Uploader";
};
config = mkIf cfg.enable {
home.packages = [pkgs.mapillary-uploader];
};
}