mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
17 lines
308 B
Nix
17 lines
308 B
Nix
{...}: {
|
|
flake.modules.darwin.system-packages = {pkgs, ...}: {
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
git
|
|
neovim
|
|
just
|
|
sops
|
|
tree
|
|
fastfetchMinimal
|
|
];
|
|
variables.EDITOR = "nvim";
|
|
};
|
|
};
|
|
}
|