Files
nix-config/modules/graphical/code.nix
2024-04-16 21:43:24 +02:00

24 lines
415 B
Nix

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