Files
stormwind-nixfiles/packages.nix
RootHost-Stormwind 3dbfc323e6 initial commit
2025-01-13 00:46:22 +01:00

14 lines
238 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
];
}