infra/module/aspect/base/nix-cli-helper.nix
2025-12-01 13:23:24 +07:00

23 lines
No EOL
430 B
Nix

{
den.aspects = {
base = {
nixos =
{ pkgs, ... }:
{
programs = {
nh = {
enable = true;
clean = {
enable = true;
extraArgs = "--keep 2";
};
};
};
environment.systemPackages = [
pkgs.nix-output-monitor
pkgs.nvd
];
};
};
};
}