summary refs log tree commit diff
path: root/modules/software-templates/devenv/c-cpp.nix
blob: ca586b0ce4ff266b2f59981d2850fc42cca6ce87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, ... }:

{
  environment.systemPackages = with pkgs; [
    (jetbrains.plugins.addPlugins jetbrains.clion [
      "17718" # github-copilot
      "nixidea"
      "visual-studio-keymap"
      "stringmanipulation"
    ])
  ];
}