nix-darwin/modules/aspects/system-packages.nix
2026-05-22 21:39:11 +09:00

17 lines
309 B
Nix

{...}: {
flake.modules.darwin.system-packages = {pkgs, ...}: {
nixpkgs.config.allowUnfree = true;
environment = {
systemPackages = with pkgs; [
git
neovim
just
sops
tree
fastfetch.minimal
];
variables.EDITOR = "nvim";
};
};
}