Add files via upload

This commit is contained in:
Guilherme Hermando
2025-08-06 00:06:34 -03:00
committed by GitHub
parent 1219494d13
commit 3c5d19c060
18 changed files with 613 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{ 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;
}