summaryrefslogtreecommitdiff
path: root/home/ebisu/fortune/development/tools/default.nix
blob: 885a4a0c576a029a9af34be216b26192d2ad8a17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ pkgs, inputs, ... }:
{
  imports = [
    ./build.nix
    ./git.nix
  ];

  home.packages =
    with pkgs;
    with inputs;
    [
      clang-tools
      gtkwave
      highlight
      hyperfine
      sloc
      wakatime-cli
      linuxKernel.packages.linux_zen.perf
      radare2
      global
      valgrind
      mise
      tsutsumi.packages.${pkgs.system}.wakatime-ls
      markdownlint-cli
      nix-prettier.packages.${pkgs.system}.default
    ];
}