flake/nixos/nix/flake.nix
2023-10-15 08:51:56 +08:00

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;
}