nixos-config/modules/system/settings/nix/default.nix
2025-06-09 21:49:41 -04:00

21 lines
318 B
Nix

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