add mapping software
This commit is contained in:
parent
bc559154f0
commit
53c2980f38
|
@ -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
19
home/modules/mapping.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -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 = {
|
||||||
|
|
Loading…
Reference in a new issue