1
0
Fork 0
nix-configuration/modules/apps/development.nix
2024-02-29 09:53:34 -05:00

20 lines
354 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"
];
};
}