This repository has been archived on 2024-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
nixos/modules/nix.nix

21 lines
429 B
Nix
Raw Permalink Normal View History

{ config, lib, options, pkgs, ... }:
{
nix = {
extraOptions = ''
experimental-features = nix-command flakes ca-derivations
'';
# Automated gabrage collection
gc = {
automatic = true;
dates = "20:30";
options = "--delete-older-than 5d";
};
# Auto-optimize nix-store, create hard-links to save space on /nix/store
settings = {
auto-optimise-store = true;
};
};
}