Added various nix settings and enabled nix-ld

This commit is contained in:
baduhai 2023-01-25 11:00:57 -03:00
parent 5aa79ee613
commit 5119c8d432
2 changed files with 9 additions and 2 deletions

View file

@ -2,9 +2,15 @@
{ {
nix = { nix = {
settings.auto-optimise-store = true; settings = {
auto-optimise-store = true;
connect-timeout = 10;
log-lines = 25;
min-free = 128000000;
max-free = 1000000000;
};
extraOptions = "experimental-features = nix-command flakes"; extraOptions = "experimental-features = nix-command flakes";
gc = { # Garbage collector gc = {
automatic = true; automatic = true;
options = "--delete-older-than 8d"; options = "--delete-older-than 8d";
}; };

View file

@ -67,6 +67,7 @@
adb.enable = true; adb.enable = true;
steam.enable = true; steam.enable = true;
dconf.enable = true; dconf.enable = true;
nix-ld.enable = true;
kdeconnect.enable = true; kdeconnect.enable = true;
partition-manager.enable = true; partition-manager.enable = true;
gnupg.agent = { gnupg.agent = {