1
0
Fork 0
nix-configuration/modules/apps/development.nix

37 lines
718 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
2024-02-29 09:53:34 -05:00
let
cfg = config.host.apps.development;
2024-02-29 09:53:34 -05:00
in
with lib;
{
options = {
host.apps.development = {
enable = mkEnableOption (mdDoc "Enables development tools");
kubernetes.enable = mkEnableOption (mdDoc "Enables kubectl, virtctl, and similar tools.");
};
};
2024-02-29 09:53:34 -05:00
config = mkMerge [
(mkIf cfg.enable {
host.ui.flatpak.enable = true;
2024-02-29 09:53:34 -05:00
2024-06-04 14:18:45 -04:00
services.flatpak.packages = [ "com.vscodium.codium" ];
})
(mkIf cfg.kubernetes.enable {
environment.systemPackages = with pkgs; [
kubectl
kubernetes-helm
kubevirt # Virtctl command-line tool
];
2024-06-04 14:18:45 -04:00
services.flatpak.packages = [ "dev.k8slens.OpenLens" ];
})
];
}