1
0
Fork 0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-05-10 19:26:07 +02:00
git.oat.zone--dark-firepit-.../modules/dev/default.nix

12 lines
155 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
nix-linter
];
};
}