feat: add some tools

This commit is contained in:
2025-09-10 23:22:57 +09:00
parent 6ef275870d
commit d41f27f465
13 changed files with 404 additions and 20 deletions

View File

@@ -28,8 +28,17 @@
tools = import ./pkgs/tools.nix { inherit pkgs; };
util = import ./pkgs/util.nix { inherit pkgs; };
games = import ./pkgs/games.nix { inherit pkgs; };
unstable = import (builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz";
sha256 = "1ijgd8hy1ii0k0s48yhnzw09c7zdjnp1fq8wfj7jgajwmlfwy3xg";
}) { system = "x86_64-linux"; };
unstables = import ./pkgs/unstable.nix {
inherit pkgs;
inherit unstable;
};
in fonts ++ minecraft ++ misc ++ network ++ programming ++ tools ++ util
++ games;
++ games ++ unstables;
programs.direnv.enable = true;
programs.direnv.nix-direnv.enable = true;