{ config, pkgs, ... }: { nixpkgs = { # texlive.combined.scheme-medium; config.allowUnfree = true; }; nix = { settings = { allowed-users = [ "@wheel" "@builders" "@video" ]; experimental-features = [ "nix-command" "flakes" ]; }; # Clean up old generations after 30 days gc = { # automatic = true; # dates = "weekly"; options = "--delete-older-than 30d"; }; # Users allowed to run nix # allowedUsers = [ "root" ]; }; }