flake/hosts/remote/tuisto/packages.nix

43 lines
1.5 KiB
Nix
Raw Normal View History

2023-02-01 01:01:03 +01:00
{ config, pkgs, ... }:
{
fonts.fontDir.enable = true;
fonts.fonts = with pkgs; [
2023-03-12 03:47:29 +01:00
roboto # Android Family of Fonts
(nerdfonts.override { fonts = [ "FiraCode" "SpaceMono" ]; })
];
2023-03-24 01:14:00 +01:00
fonts.optimizeForVeryHighDPI = true;
2023-03-12 03:47:29 +01:00
2023-03-19 21:48:25 +01:00
environment.systemPackages = with pkgs; [
2023-03-13 20:30:03 +01:00
adw-gtk3 # GTK3 libadwaita Theme ported to GTK-3
appimage-run # Appimage Runner
btop # Resource Monitor
cpu-x # PC Information
dconf # Gnome Configuration
2023-03-26 03:36:54 +02:00
firefox # Browser
2023-03-13 20:30:03 +01:00
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
2023-03-07 00:02:16 +01:00
libsForQt5.kolourpaint # Painting Application
2023-03-13 20:30:03 +01:00
neofetch # System Information
2023-03-19 21:48:25 +01:00
nitch # Nim System Fetch
2023-03-13 20:30:03 +01:00
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
2023-02-01 01:01:03 +01:00
];
}