dotfiles/modules/dev/dev.nix
2022-04-20 09:53:28 +01:00

12 lines
155 B
Nix

{ options, config, pkgs, lib, ... }:
with lib;
{
config = {
environment.systemPackages = with pkgs; [
valgrind
nix-linter
];
};
}