23 lines
354 B
Nix
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;
|
|
}
|