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
RealStickman 272628b790 Huge batch of user configurations has been copied or implemented to nix
New configs for:
    - kitty
    - libreoffice
    - fonts
    - transmission remote
    - ssh

    Calibre is still TODO, once I figure out what the important bits
    are.
    Same goes for Firefox, which might be more complex
2023-05-05 14:58:36 +02:00

36 lines
1.1 KiB
Nix

{ pkgs, ... }:
{
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
#vim # an editor
neovim # text editor
fwupd # firmware updates
fwupd-efi # firmware updates additional EFI stuff
wget # get stuff from the net
gvfs # virtual file system support
#hyprland # window manager
wayland # wayland server
xdg-utils # xdg directories, open, etc
xdg-user-dirs # directories
sweet # gtk theme
capitaine-cursors # cursor theme
xfce.tumbler # image files thumbnail generator (+ base requirement)
ffmpegthumbnailer # video files thumbnail generator
qt6.qtwayland # wayland for qt6
libsForQt5.qt5.qtwayland # wayland for at5
polkit_gnome # graphical authentication agent for polkit
freetype # font rendering and configuration
open-vm-tools # running on vmware
podman # containers
];
fonts.fonts = with pkgs; [
fira # fira sans font
fira-code # fira code font
font-awesome # icons font
fira-mono # fira monospace without ligatures
];
}