flake/users/admin/home-manager.nix

44 lines
1.7 KiB
Nix
Raw Normal View History

2023-02-16 15:20:05 +01:00
{ config, pkgs, ... }:
{
2023-02-25 17:52:19 +01:00
home-manager.users.admin = { pkgs, ... }: {
2023-03-19 21:48:25 +01:00
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
2023-09-29 17:26:38 +02:00
gnome-frog # Text extraction tool (OCR)
2023-03-19 21:48:25 +01:00
gpodder # Podcast Manager
2023-03-13 20:30:03 +01:00
keepassxc # GUI Password Manager with Cryptography
kitty # Terminal Emulator
2023-03-19 21:48:25 +01:00
mpv # Media Player
2023-03-20 23:45:20 +01:00
mumble # Low-Latency, High Quality Voice Chat
2023-09-04 21:01:15 +02:00
nomachine-client # NoMachine remote desktop client (nxplayer)
2023-03-19 21:48:25 +01:00
onlyoffice-bin # Office Suite
pdfarranger # PDF Arranger
retroarchFull # Multi-Platform Emulator
2023-09-04 21:01:15 +02:00
rustdesk # Remote Desktop Software
2023-03-19 21:48:25 +01:00
smplayer # Media Player
solaar # Logitech Unifying Receiver
speedcrunch # Calculator
strawberry # Media Player
2023-04-18 04:49:47 +02:00
ventoy # USB Boot App
2023-03-19 21:48:25 +01: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-03-05 20:38:06 +01:00
];
2023-02-16 15:20:05 +01:00
2023-03-25 23:30:29 +01:00
imports = [
../../config/config.nix
2023-09-14 18:56:52 +02:00
../../common/git.nix
../../common/vscodium.nix
2023-03-25 23:30:29 +01:00
];
2023-03-14 13:15:23 +01:00
home.stateVersion = "22.11";
2023-03-25 23:30:29 +01:00
};
2023-02-25 20:43:59 +01:00
}