21 lines
318 B
Nix
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;
|
|
}
|