Files
stormwind-nixfiles/packages.nix

14 lines
238 B
Nix
Raw Normal View History

2025-01-13 00:46:22 +01:00
{ config, pkgs, ... }:
{
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
neovim
];
}