This repository has been archived on 2023-05-20. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-config/system-packages.nix

18 lines
421 B
Nix

{ pkgs, ... }:
{
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
#vim # an editor
neovim # text editor
fwupd # firmware updates
fwupd-efi # firmware updates additional EFI stuff
wget # get stuff from the net
#hyprland # window manager
wayland # wayland server
xdg-utils # xdg directories, open, etc
];
}