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

15 lines
211 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
wget
hyprland
wayland
xdg-utils
];
}