diff options
| author | Fuwn <[email protected]> | 2024-10-23 03:40:38 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-23 03:40:38 -0700 |
| commit | acd679c65a0dbd8020dfd7f6e3ea6f1e955fab94 (patch) | |
| tree | ceda1acda86dc4b39e7889fdc4dbde7fe11f29a2 /home/ebisu/kansai/development/tools | |
| parent | home: simplify akashi module population (diff) | |
| download | nixos-config-acd679c65a0dbd8020dfd7f6e3ea6f1e955fab94.tar.xz nixos-config-acd679c65a0dbd8020dfd7f6e3ea6f1e955fab94.zip | |
home: move fortune modules up into kansai module
Diffstat (limited to 'home/ebisu/kansai/development/tools')
| -rw-r--r-- | home/ebisu/kansai/development/tools/build.nix | 11 | ||||
| -rw-r--r-- | home/ebisu/kansai/development/tools/default.nix | 24 | ||||
| -rw-r--r-- | home/ebisu/kansai/development/tools/git.nix | 13 |
3 files changed, 48 insertions, 0 deletions
diff --git a/home/ebisu/kansai/development/tools/build.nix b/home/ebisu/kansai/development/tools/build.nix new file mode 100644 index 0000000..6b0c770 --- /dev/null +++ b/home/ebisu/kansai/development/tools/build.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + cmake + just + tup + meson + ninja + sccache + ]; +} diff --git a/home/ebisu/kansai/development/tools/default.nix b/home/ebisu/kansai/development/tools/default.nix new file mode 100644 index 0000000..ecde494 --- /dev/null +++ b/home/ebisu/kansai/development/tools/default.nix @@ -0,0 +1,24 @@ +{ inputs, pkgs, ... }: +{ + imports = [ + ./build.nix + ./git.nix + ]; + + home.packages = with pkgs; [ + clang-tools + gtkwave + highlight + hyperfine + sloc + wakatime-cli + linuxKernel.packages.linux_zen.perf + radare2 + global + valgrind + mise + tsutsumi.wakatime-ls + markdownlint-cli + inputs.nix-prettier.packages.${pkgs.system}.default + ]; +} diff --git a/home/ebisu/kansai/development/tools/git.nix b/home/ebisu/kansai/development/tools/git.nix new file mode 100644 index 0000000..0616c40 --- /dev/null +++ b/home/ebisu/kansai/development/tools/git.nix @@ -0,0 +1,13 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + delta + gh + onefetch + gitoxide + tsutsumi.git-sumi + git-crypt + git-lfs + bit + ]; +} |