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; [
|
2023-05-01 12:49:53 +02:00
|
|
|
#vim # an editor
|
|
|
|
neovim # text editor
|
2023-04-17 21:14:39 +02:00
|
|
|
fwupd # firmware updates
|
|
|
|
fwupd-efi # firmware updates additional EFI stuff
|
|
|
|
wget # get stuff from the net
|
2023-04-18 17:03:04 +02:00
|
|
|
#hyprland # window manager
|
2023-04-17 21:14:39 +02:00
|
|
|
wayland # wayland server
|
|
|
|
xdg-utils # xdg directories, open, etc
|
2023-05-01 13:52:14 +02:00
|
|
|
sweet # gtk theme
|
2023-04-16 20:24:48 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
}
|