1
0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-11-29 16:53:45 +01:00
git.oat.zone--dark-firepit-.../modules/dev/dev.nix
2023-01-20 00:52:46 +01:00

12 lines
156 B
Nix

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