feat: adds nix-ld and no longer hard-code timezone

This commit is contained in:
Ahwx 2025-08-03 12:20:32 +02:00
parent 69a7d717d6
commit 1f06aba566

View file

@ -14,6 +14,8 @@
"nix-command"
"flakes"
];
# substituters = [ "http://violet.booping.local" ];
# trusted-public-keys = [ "violet.booping.local:2gshN3xfGSL7eKFc8tGkqSoIb3WQxuB2RJ8DuakLLqc=%" ];
};
gc = {
automatic = true;
@ -22,6 +24,11 @@
};
};
programs.nix-ld = {
enable = true;
libraries = with pkgs; [ ];
};
# nixpkgs = {
# overlays = [
# self.overlays.default
@ -56,6 +63,6 @@
ipaexfont
];
time.timeZone = "Europe/Amsterdam";
time.timeZone = lib.mkDefault "Europe/Amsterdam";
system.stateVersion = "24.05";
}