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

17 lines
394 B
Nix
Raw Normal View History

2023-04-16 20:24:48 +02:00
{ pkgs, ... }:
{
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
vim # an 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
2023-04-16 20:24:48 +02:00
];
}