nixos-config/modules/system/settings/nix/default.nix

20 lines
289 B
Nix

{ pkgs, ... }:
{
imports = [
./channels
./gc
./unfree
];
nix = {
package = pkgs.lix;
settings = {
experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
trusted-users = [ "@wheel" ];
};
};
}