flake/nixos/nix/flake.nix
2023-11-04 15:36:48 +08:00

13 lines
305 B
Nix
Executable file

{ pkgs, ... }:
{
# Enable Flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Install Git
environment.systemPackages = [ pkgs.git ];
# Does not work with Flake based configurations
system.copySystemConfiguration = false;
programs.command-not-found.enable = false;
}