add mapping software

This commit is contained in:
Fabian Montero 2025-02-18 09:41:13 -06:00
parent bc559154f0
commit 53c2980f38
Signed by: fabian
GPG key ID: 1FFAC35E1798174F
3 changed files with 21 additions and 0 deletions

View file

@ -18,5 +18,6 @@
./accounts.nix ./accounts.nix
./syncthing.nix ./syncthing.nix
./deepState.nix ./deepState.nix
./mapping.nix
]; ];
} }

19
home/modules/mapping.nix Normal file
View file

@ -0,0 +1,19 @@
{
pkgs,
lib,
config,
...
}:
with lib; let
cfg = config.local.apps.mapping;
in {
options.local.apps.mapping = {
enable = mkEnableOption "mapping apps";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
qgis
openorienteering-mapper
];
};
}

View file

@ -47,6 +47,7 @@
enable = true; enable = true;
workspace = "1"; #make this an int later workspace = "1"; #make this an int later
}; };
mapping.enable = true;
}; };
gui = { gui = {