flake/nixos/profiles/core/nix/flake.nix

15 lines
353 B
Nix
Raw Normal View History

{pkgs, ...}: {
2023-10-15 08:51:56 +08:00
# Enable Flakes
nix.settings.experimental-features = ["nix-command" "flakes"];
2023-10-15 08:51:56 +08:00
2023-12-05 14:57:40 +08:00
# Disable nix-channel
nix.channel.enable = false;
2023-11-04 15:36:48 +08:00
# Install Git
environment.systemPackages = [pkgs.git];
2023-11-04 15:36:48 +08:00
2023-10-15 08:51:56 +08:00
# Does not work with Flake based configurations
system.copySystemConfiguration = false;
programs.command-not-found.enable = false;
2023-09-19 08:17:43 +08:00
}