mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-03-19 15:50:30 +01:00
26 lines
317 B
Nix
26 lines
317 B
Nix
|
|
{
|
||
|
|
self,
|
||
|
|
pkgs,
|
||
|
|
lib,
|
||
|
|
inputs,
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
{
|
||
|
|
nix = {
|
||
|
|
gc = {
|
||
|
|
automatic = true;
|
||
|
|
dates = "weekly";
|
||
|
|
options = "--delete-older-than 7d";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
programs.nix-ld = {
|
||
|
|
enable = true;
|
||
|
|
libraries = with pkgs; [ ];
|
||
|
|
};
|
||
|
|
|
||
|
|
services.envfs.enable = true;
|
||
|
|
|
||
|
|
system.stateVersion = "24.05";
|
||
|
|
}
|