1
0
Fork 0
nix-configuration/modules/apps/development.nix
2024-03-04 10:57:41 -05:00

20 lines
338 B
Nix

{ config, lib, ... }:
let
cfg = config.host.apps.development;
in
with lib;
{
options = {
host.apps.development.enable = mkEnableOption (mdDoc "Enables development tools");
};
config = mkIf cfg.enable {
host.ui.flatpak.enable = true;
services.flatpak.packages = [
"com.vscodium.codium"
"dev.k8slens.OpenLens"
];
};
}