configs/nixos-config/system-packages.nix

33 lines
992 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; [
2023-05-01 12:49:53 +02:00
#vim # an editor
neovim # text editor
fwupd # firmware updates
fwupd-efi # firmware updates additional EFI stuff
wget # get stuff from the net
2023-05-02 17:40:23 +02:00
gvfs # virtual file system support
2023-04-18 17:03:04 +02:00
#hyprland # window manager
wayland # wayland server
xdg-utils # xdg directories, open, etc
2023-05-02 17:31:38 +02:00
xdg-user-dirs # directories
2023-05-01 14:59:14 +02:00
sweet # gtk theme
capitaine-cursors # cursor theme
2023-05-01 15:38:23 +02:00
xfce.tumbler # image files thumbnail generator (+ base requirement)
2023-05-01 15:37:03 +02:00
ffmpegthumbnailer # video files thumbnail generator
2023-05-01 16:12:04 +02:00
qt6.qtwayland # wayland for qt6
libsForQt5.qt5.qtwayland # wayland for at5
polkit_gnome # graphical authentication agent for polkit
2023-05-01 18:28:24 +02:00
freetype # font rendering and configuration
2023-05-01 18:33:33 +02:00
];
fonts.fonts = with pkgs; [
2023-05-01 18:28:24 +02:00
fira # fira sans font
fira-code # fira code font
font-awesome # icons font
2023-04-16 20:24:48 +02:00
];
}