flake/users/admin/home-manager.nix

44 lines
1.7 KiB
Nix

{ config, pkgs, ... }:
{
home-manager.users.admin = { pkgs, ... }: {
home.packages = with pkgs; [
bleachbit # PC Cleaner
calibre # eBook Library
crow-translate # Language Translator
dino # XMPP Client
easytag # Music Tag Editor
freetube # YouTube Front-End
gImageReader # Tesseract-OCR Front-End
gnome-frog # Text extraction tool (OCR)
gpodder # Podcast Manager
keepassxc # GUI Password Manager with Cryptography
kitty # Terminal Emulator
mpv # Media Player
mumble # Low-Latency, High Quality Voice Chat
nomachine-client # NoMachine remote desktop client (nxplayer)
onlyoffice-bin # Office Suite
pdfarranger # PDF Arranger
retroarchFull # Multi-Platform Emulator
rustdesk # Remote Desktop Software
smplayer # Media Player
solaar # Logitech Unifying Receiver
speedcrunch # Calculator
strawberry # Media Player
ventoy # USB Boot App
veracrypt # Filesystem Encryption
vscodium # Code Editor
xiphos # Bible Study Tool
xournalpp # PDF Annotation
];
imports = [
../../config/config.nix
../../common/git.nix
../../common/vscodium.nix
];
home.stateVersion = "22.11";
};
}