flake/users/zonsopkomst/home-manager.nix

60 lines
2.9 KiB
Nix

{ config, pkgs, ... }:
{
home-manager.users.zonsopkomst = { pkgs, ... }: {
home.packages = with pkgs; [
armcord # Discord Client
bleachbit # PC Cleaner
calibre # eBook Library
crow-translate # Language Translator
dconf2nix # Nixify Gnome Config File
dino # XMPP Client
element-desktop # Matrix Client
easytag # Music Tag Editor
freetube # YouTube Front-End
gImageReader # Tesseract-OCR Front-End
gnucash # Double Entry Accounting Software
gnome-frog # Text extraction tool (OCR)
gpodder # Podcast Manager
gretl # Econometric Analysis
gzdoom # Doom Clone based on ZDoom
josm # Extensible editor for OpenStreetMap
kitty # Terminal Emulator
kitty-themes # Kitty Themes
keepassxc # GUI Password Manager with Cryptography
librewolf # Firefox Web Browser Fork
libsForQt5.kolourpaint # Painting Application
libsForQt5.k3b # Disk Burning Application
mpv # Media Player
nomachine-client # NoMachine remote desktop client (nxplayer)
onlyoffice-bin # Office Suite
p7zip # File Archiver
pdfarranger # PDF Arranger
qbittorrent # Torrent Application
qgis # A Free and Open Source Geographic Information System
retroarchFull # Multi-Platform Emulator
smplayer # Media Player
solaar # Logitech Unifying Receiver
strawberry # Media Player
rustdesk # Remote Desktop Software
rstudioWrapper # Integrated Tools for the R Language
speedcrunch # Calculator
tor-browser-bundle-bin # Privacy Web Browser
ventoy # USB Boot App
veracrypt # Filesystem Encryption
xiphos # Bible Study Tool
xournalpp # PDF Annotation
];
imports = [
../../config/config.nix
../../common/emacs.nix
../../common/git.nix
# TODO ../../common/starship.nix
../../common/vscodium.nix
];
home.stateVersion = "22.11";
};
}