mirror of
https://git.oat.zone/dark-firepit/dotfiles
synced 2024-11-29 16:53:45 +01:00
12 lines
156 B
Nix
12 lines
156 B
Nix
{ options, config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
{
|
|
config = {
|
|
environment.systemPackages = with pkgs; [
|
|
valgrind
|
|
# nix-linter
|
|
];
|
|
};
|
|
}
|