flake/hosts/remote/tuisto/packages.nix

43 lines
1.5 KiB
Nix

{ config, pkgs, ... }:
{
fonts.fontDir.enable = true;
fonts.fonts = with pkgs; [
roboto # Android Family of Fonts
(nerdfonts.override { fonts = [ "FiraCode" "SpaceMono" ]; })
];
fonts.optimizeForVeryHighDPI = true;
environment.systemPackages = with pkgs; [
adw-gtk3 # GTK3 libadwaita Theme ported to GTK-3
appimage-run # Appimage Runner
btop # Resource Monitor
cpu-x # PC Information
dconf # Gnome Configuration
firefox # Browser
gnome.gnome-tweaks # Gnome Customization Tool
git # Distributed Version Control System
gsmartcontrol # Disk Health Inspection Tool
hplip # HP Print Drivers
i2c-tools # Network Utilities
inetutils # Network Utilities
libsForQt5.kolourpaint # Painting Application
neofetch # System Information
nitch # Nim System Fetch
ntfs3g # FUSE Client
p7zip # File Archiver
papirus-icon-theme # Icons
phinger-cursors # Cursor Theme
powertop # Power Manager
protonup # Proton Installer
syncthing # File Synchronization
tldr # Simplified man pages
waydroid # Android Emulator
];
}