nixos-config/modules/system/settings/nix/default.nix
2025-05-12 11:19:54 -04:00

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" ];
};
};
}