Files
stormwind-nixfiles/packages.nix
RootHost-Stormwind da0535eb09 drives helix and broot
2025-04-07 12:45:31 +02:00

23 lines
426 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
lvm2
cryptsetup
pciutils
smartmontools
helix # Very bazed terminal editor
broot # Very bazed terminal file explorer
];
}