System package list

This commit is contained in:
RealStickman 2023-04-16 20:24:48 +02:00
parent 44eff6a42d
commit 5f7690ce58

14
system-packages.nix Normal file
View File

@ -0,0 +1,14 @@
{ pkgs, ... }:
{
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
vim
wget
hyprland
wayland
xdg-utils
];
}