flake/users/leeuwarden/home-manager.nix

72 lines
3.1 KiB
Nix
Raw Permalink Normal View History

{ config, pkgs, ... }:
{
home-manager.users.leeuwarden = { pkgs, ... }: {
2023-03-12 06:18:53 +01:00
home.packages = with pkgs; [
2023-04-03 13:59:43 +02:00
armcord # Discord Client
ardour # DAW
2024-01-02 22:52:51 +01:00
borgbackup # Deduplicating archiver with compression and encryption
2024-02-24 21:17:54 +01:00
brave # Browser
2023-04-03 13:59:43 +02:00
calibre # eBook Library
crow-translate # Language Translator
dino # XMPP Client
2024-02-23 20:13:12 +01:00
#duplicati # Backup Data
2023-04-03 13:59:43 +02:00
easytag # Music Tag Editor
element-desktop # Matrix Client
freetube # YouTube Front-End
gimp # GNU Image Manipulation Program
gnucash # Double Entry Accounting Software
gpodder # Podcast Manager
inkscape # Vector Graphics Editor
#itch # itch.io Games Launcher
2023-04-03 13:59:43 +02:00
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
2023-12-28 16:58:49 +01:00
llpp # PDF Viewer
#localsend # Send Files/Text Over Wifi
2024-01-16 15:46:27 +01:00
ludusavi # Backup tool for PC game saves
2023-04-03 13:59:43 +02:00
makemkv # Blu-Ray and DVD to MKV Converter
2024-01-09 21:33:28 +01:00
mangohud # Gaming Stat HUD
2023-04-03 13:59:43 +02:00
mpv # Media Player
mumble # Low-Latency, High Quality Voice Chat
2023-12-28 16:54:05 +01:00
mupdf # PDF Viewer
nomacs # Qt-based image viewer
2023-09-04 21:01:15 +02:00
nomachine-client # NoMachine remote desktop client (nxplayer)
2024-01-24 16:32:26 +01:00
nuclear # Music Streamer
2023-04-03 13:59:43 +02:00
obs-studio # Recording/Streaming Application
onlyoffice-bin # Office Suite
openrgb # RGB Manager
p7zip # File Archiver
pdfarranger # PDF Arranger
2023-10-15 22:05:47 +02:00
python3 # python langugage
2023-04-03 13:59:43 +02:00
qbittorrent # Torrent Application
#retroarchFull # Multi-Platform Emulator
2023-09-03 22:40:40 +02:00
rustdesk # Remote Desktop Software
2023-04-03 13:59:43 +02:00
shattered-pixel-dungeon # Roguelike Dungeon Crawl
smplayer # Media Player
solaar # Logitech Unifying Receiver
2024-01-24 16:32:26 +01:00
soundconverter # GTK Audio file converter
2023-04-03 13:59:43 +02:00
speedcrunch # Calculator
tenacity # Sound Editor
tor-browser-bundle-bin # Privacy Web Browser
2023-04-18 04:49:47 +02:00
ventoy # USB Boot App
2023-04-03 13:59:43 +02:00
veracrypt # Filesystem Encryption
vscodium # Code Editor
2023-04-09 03:10:25 +02:00
xiphos # Bible Study Tool
2023-08-09 21:51:25 +02:00
xournalpp # PDF Annotation
2023-12-28 16:54:05 +01:00
zathura # PDF Viewer
2023-03-12 06:18:53 +01:00
];
2023-03-25 23:20:47 +01:00
imports = [
2023-09-14 18:56:52 +02:00
../../config/config.nix
2023-06-28 06:55:32 +02:00
../../common/emacs.nix
2023-03-25 23:26:20 +01:00
../../common/git.nix
2023-06-28 06:55:32 +02:00
../../common/vscodium.nix
2023-03-25 23:20:47 +01:00
];
2023-03-12 06:18:53 +01:00
2023-03-25 22:24:41 +01:00
home.stateVersion = "22.05";
2023-03-25 23:30:29 +01:00
};
}