issue with hm fixed

This commit is contained in:
LunarAkai 2025-03-15 15:32:00 +01:00
commit 318f03df08
8 changed files with 61 additions and 45 deletions

View file

@ -16,4 +16,4 @@
# Set your time zone.
time.timeZone = "Europe/Berlin";
}
}

View file

@ -1,4 +1,4 @@
{
{pkgs, ...}: {
# dynamic linking
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [

View file

@ -1,11 +1,21 @@
{
inputs,
lib,
...
inputs,
lib,
...
}: {
# flakes
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
}
nix = {
settings = {
experimental-features = [
"nix-command"
"flakes"
];
warn-dirty = false;
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than +7";
};
};
}