flake/users/leeuwarden/home-manager.nix

60 lines
2.5 KiB
Nix

{ config, pkgs, ... }:
{
home-manager.users.leeuwarden = { pkgs, ... }: {
home.packages = with pkgs; [
armcord # Discord Client
ardour # DAW
calibre # eBook Library
crow-translate # Language Translator
dino # XMPP Client
easytag # Music Tag Editor
element-desktop # Matrix Client
freetube # YouTube Front-End
gImageReader # Tesseract-OCR Front-End
gimp # GNU Image Manipulation Program
gnucash # Double Entry Accounting Software
gpodder # Podcast Manager
inkscape # Vector Graphics Editor
itch # itch.io Games Launcher
keepassxc # GUI Password Manager with Cryptography
kitty # Terminal
kitty-themes # Kitty Terminal Themes
krita # Painting Application
librewolf # Firefox Web Browser Fork
libsForQt5.kolourpaint # Painting Application
makemkv # Blu-Ray and DVD to MKV Converter
mpv # Media Player
mumble # Low-Latency, High Quality Voice Chat
nomachine-client # NoMachine remote desktop client (nxplayer)
obs-studio # Recording/Streaming Application
onlyoffice-bin # Office Suite
openrgb # RGB Manager
p7zip # File Archiver
pdfarranger # PDF Arranger
pipes # Animated Pipes Terminal Screensaver
qbittorrent # Torrent Application
rustdesk # Remote Desktop Software
shattered-pixel-dungeon # Roguelike Dungeon Crawl
smplayer # Media Player
solaar # Logitech Unifying Receiver
speedcrunch # Calculator
tenacity # Sound Editor
tor-browser-bundle-bin # Privacy Web Browser
ventoy # USB Boot App
veracrypt # Filesystem Encryption
vscodium # Code Editor
xiphos # Bible Study Tool
xournalpp # PDF Annotation
];
imports = [
../../config/config.nix
../../common/emacs.nix
../../common/git.nix
../../common/vscodium.nix
];
home.stateVersion = "22.05";
};
}