nix-config/modules/core/packages.nix

10 lines
141 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
vim
wget
sbctl
];
nixpkgs.config.allowUnfree = true;
}