flake/users/leeuwarden/home-manager.nix

64 lines
2.6 KiB
Nix
Raw 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
calibre # eBook Library
crow-translate # Language Translator
dino # XMPP Client
2023-10-20 18:44:43 +02: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
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-11-12 22:50:29 +01:00
localsend # Send Files/Text Over Wifi
2023-04-03 13:59:43 +02:00
makemkv # Blu-Ray and DVD to MKV Converter
mpv # Media Player
mumble # Low-Latency, High Quality Voice Chat
2023-12-28 16:54:05 +01:00
mupdf # PDF Viewer
2023-09-04 21:01:15 +02:00
nomachine-client # NoMachine remote desktop client (nxplayer)
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
2023-12-23 05:37:34 +01:00
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
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
};
}