nixos-config/modules/system/settings/nix/default.nix
2025-06-09 18:24:51 -04:00

23 lines
354 B
Nix

{ pkgs, ... }:
{
imports = [
./channels
./distributed
./gc
./unfree
];
nix = {
package = pkgs.lix;
settings = {
auto-optimise-store = true;
experimental-features = [
"nix-command"
"flakes"
];
};
};
# Use a newer implementation of nixos-rebuild
system.rebuild.enableNg = true;
}