flake/nixos/nix/flake.nix

11 lines
237 B
Nix
Raw Normal View History

2023-09-19 00:17:43 +00:00
{ ... }:
{
2023-10-15 00:51:56 +00:00
# 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;
2023-09-19 00:17:43 +00:00
}