Files
stormwind-nixfiles/packages.nix
RootHost-Stormwind 0f317774ff install lvm2
2025-01-13 02:03:55 +01:00

18 lines
277 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
];
}