24 lines
547 B
Nix
24 lines
547 B
Nix
{ pkgs, inputs, lib, ... }:
|
|
{
|
|
nix =
|
|
let myPkgs = inputs.unstableSmall.legacyPackages.${pkgs.system};
|
|
in {
|
|
package = myPkgs.lix;
|
|
gc = lib.mkDefault {
|
|
automatic = true;
|
|
dates = "daily";
|
|
options = "--delete-older-than 10d";
|
|
};
|
|
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
settings.auto-optimise-store = true;
|
|
settings = {
|
|
sandbox = true;
|
|
trusted-users = [ "@wheel" ];
|
|
allowed-users = [ "root" "qbit" ];
|
|
};
|
|
};
|
|
}
|