mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2026-05-07 13:36:24 +00:00
10 lines
141 B
Nix
10 lines
141 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
wget
|
|
sbctl
|
|
];
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|