flake/users/admin/home-manager.nix

56 lines
2.4 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; [
2024-01-02 22:52:51 +01:00
borgbackup # Deduplicating archiver with compression and encryption
2023-03-19 21:48:25 +01:00
bleachbit # PC Cleaner
2024-02-02 23:34:01 +01:00
bristol # A range of synthesiser, electric piano and organ emulations
brave # Brave Browser
2023-03-19 21:48:25 +01:00
calibre # eBook Library
crow-translate # Language Translator
dino # XMPP Client
easytag # Music Tag Editor
2023-10-02 20:18:10 +02:00
firefox # Browser
2023-03-19 21:48:25 +01:00
freetube # YouTube 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-10-02 20:18:10 +02:00
libsForQt5.kolourpaint # Painting Application
2024-01-25 00:29:50 +01:00
localsend # Send Files/Text Over Wifi
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)
2024-02-23 20:13:12 +01:00
nomacs # Qt-based image viewer
nuclear # Music Streamer
2023-03-19 21:48:25 +01:00
onlyoffice-bin # Office Suite
pdfarranger # PDF Arranger
2024-02-02 23:34:01 +01:00
pianobooster # A MIDI file player that teaches you how to play the piano
qsynth # Fluidsynth GUI
2024-02-02 23:03:32 +01:00
#retroarchFull # Multi-Platform Emulator
2024-02-02 23:34:01 +01:00
#rili # Children's Train Game
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
2024-02-02 23:34:01 +01:00
synthesia # A fun way to learn how to play the piano
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
2024-02-02 22:02:54 +01:00
vmpk # Virtual MIDI Piano Keyboard
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
}