dotfiles/modules/dev/dev.nix

12 lines
156 B
Nix
Raw Normal View History

2022-01-11 18:44:40 +01:00
{ options, config, pkgs, lib, ... }:
with lib;
{
config = {
environment.systemPackages = with pkgs; [
valgrind
2023-01-20 00:52:46 +01:00
# nix-linter
2022-01-11 18:44:40 +01:00
];
};
}