Files
stormwind-nixfiles/packages.nix

23 lines
426 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 02:03:55 +01:00
lvm2
2025-01-13 23:43:49 +01:00
cryptsetup
2025-04-07 12:45:31 +02:00
pciutils
smartmontools
helix # Very bazed terminal editor
broot # Very bazed terminal file explorer
2025-01-13 00:46:22 +01:00
];
}