ROCKPro64-Server/system/nix/default.nix

23 lines
436 B
Nix
Raw Normal View History

2025-02-28 14:21:00 -05:00
{ config, pkgs, unstable, ... }:
2025-02-28 12:21:09 -05:00
{
2025-02-28 14:21:00 -05:00
nix = {
settings = {
2025-02-28 12:21:09 -05:00
experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
};
2025-02-28 14:21:00 -05:00
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
2025-02-28 12:21:09 -05:00
};
};
2025-02-28 14:21:00 -05:00
_module.args.pkgsUnstable = import unstable {
inherit (pkgs.stdenv.hostPlatform) system;
inherit (config.nixpkgs) config;
};
2025-02-28 12:21:09 -05:00
}