46 lines
1.8 KiB
Nix
46 lines
1.8 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
|
|
duplicati # Backup Data
|
|
easytag # Music Tag Editor
|
|
firefox # Browser
|
|
freetube # YouTube Front-End
|
|
gnome-frog # Text extraction tool (OCR)
|
|
gpodder # Podcast Manager
|
|
libsForQt5.kolourpaint # Painting Application
|
|
localsend # Send Files/Text Over Wifi
|
|
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";
|
|
};
|
|
}
|