infra/module/aspect/base/nix-cli-helper.nix

23 lines
430 B
Nix
Raw Permalink Normal View History

2025-12-01 13:23:24 +07:00
{
den.aspects = {
base = {
nixos =
{ pkgs, ... }:
{
programs = {
nh = {
enable = true;
clean = {
enable = true;
extraArgs = "--keep 2";
};
};
};
environment.systemPackages = [
pkgs.nix-output-monitor
pkgs.nvd
];
};
};
};
}