Files
stormwind-nixfiles/packages.nix
RootHost-Stormwind 3a73dddb5e install python3
2025-11-04 21:54:03 +01:00

25 lines
450 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
tcpdump
python3
];
}