Files
nix-config/modules/graphical/code.nix
2024-04-19 22:20:47 +02:00

25 lines
466 B
Nix

{ config, pkgs, inputs, lib, ... }:
with lib;
let
cfg = config.custom.graphical.code;
in
{
options.custom.graphical.code = {
enable = mkEnableOption "Enables code";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
kate
jetbrains.idea-ultimate
insomnia
nodejs_21 # needed for tabby extension
];
#environment.sessionVariables = {
# DOTNET_ROOT = "${pkgs.dotnet-sdk_7}";
#};
};
}