Files
NixConfig/conf/NixHelper/nixhelper.nix
T
Guilherme Hermando 3c5d19c060 Add files via upload
2025-08-06 00:06:34 -03:00

19 lines
402 B
Nix

{ config, lib, inputs, pkgs, ... }: {
## nixLD
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [];
## nixNH
programs.nh = {
enable = true;
clean.enable = true;
clean.extraArgs = "--keep-since 4d --keep 3";
flake = "/etc/nixos"; # sets NH_OS_FLAKE variable for you
};
## Configuração do gerenciador nix
nix.package = pkgs.lixPackageSets.latest.lix;
}