Files
stormwind-nixfiles/packages.nix
RootHost-Stormwind e9ab35b482 add package cryptsetup
2025-01-13 23:43:49 +01:00

19 lines
292 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
];
}