10 lines
237 B
Nix
Executable file
10 lines
237 B
Nix
Executable file
{ ... }:
|
|
|
|
{
|
|
# Enable Flakes
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
# Does not work with Flake based configurations
|
|
system.copySystemConfiguration = false;
|
|
programs.command-not-found.enable = false;
|
|
}
|