Files
nixos-config/home/features/desktop/coding.nix

24 lines
376 B
Nix
Raw Normal View History

2025-01-28 09:57:26 +01:00
{
config,
lib,
pkgs,
...
}:
with lib; let
2025-05-26 11:36:25 +02:00
cfg = config.features.desktop.coding;
2025-01-28 09:57:26 +01:00
in {
options.features.desktop.coding.enable =
mkEnableOption "install coding related stuff";
config = mkIf cfg.enable {
home.packages = with pkgs; [
bruno
insomnia
];
coding.editors = {
neovim.enable = true;
zed.enable = true;
2025-01-24 14:54:19 +01:00
};
2025-07-20 15:13:26 +02:00
};
2024-10-20 00:30:58 +02:00
}