Files
stormwind-nixfiles/packages.nix

17 lines
268 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
2025-01-13 01:31:28 +01:00
tldr
htop
hyfetch
2025-01-13 00:46:22 +01:00
];
}