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

20 lines
338 B
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
{ config, lib, ... }:
let
2024-03-04 10:57:41 -05:00
cfg = config.host.apps.development;
2024-02-29 09:53:34 -05:00
in
with lib;
{
2024-03-04 10:57:41 -05:00
options = {
host.apps.development.enable = mkEnableOption (mdDoc "Enables development tools");
};
2024-02-29 09:53:34 -05:00
2024-03-04 10:57:41 -05:00
config = mkIf cfg.enable {
host.ui.flatpak.enable = true;
2024-02-29 09:53:34 -05:00
2024-03-04 10:57:41 -05:00
services.flatpak.packages = [
"com.vscodium.codium"
2024-02-29 09:53:34 -05:00
"dev.k8slens.OpenLens"
2024-03-04 10:57:41 -05:00
];
};
2024-02-29 09:53:34 -05:00
}