Files
stormwind-nixfiles/packages.nix
RootHost-Stormwind 7dd3c8170d add some packages
2025-01-13 01:31:28 +01:00

17 lines
268 B
Nix

{ 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
tldr
htop
hyfetch
];
}