flake/users/zonsopkomst/home-manager.nix

73 lines
3.6 KiB
Nix
Raw Permalink Normal View History

2024-03-21 03:00:23 +01:00
{ config, pkgs, ... }:
{
2024-03-21 03:00:23 +01:00
home-manager.users.zonsopkomst = { pkgs, ... }: {
2024-03-20 12:50:33 +01:00
2024-03-21 03:00:23 +01:00
home.packages = with pkgs; [
2023-03-29 19:58:48 +02:00
armcord # Discord Client
2024-02-26 02:52:39 +01:00
#betterbird # Betterbird Email Client
2023-03-29 19:58:48 +02:00
bleachbit # PC Cleaner
2024-01-02 22:52:51 +01:00
borgbackup # Deduplicating archiver with compression and encryption
brave # Brave Browser
2023-03-29 19:58:48 +02:00
calibre # eBook Library
crow-translate # Language Translator
dconf2nix # Nixify Gnome Config File
dino # XMPP Client
2024-02-23 20:13:12 +01:00
#duplicati # Backup Data
2023-03-29 19:58:48 +02:00
element-desktop # Matrix Client
easytag # Music Tag Editor
2024-03-20 17:01:47 +01:00
ferdium # Communication & Services Manager
2023-03-29 19:58:48 +02:00
freetube # YouTube Front-End
2024-03-05 21:54:38 +01:00
gajim # XMPP Client
2024-03-21 03:06:38 +01:00
#gnucash # Double Entry Accounting Software - TODO: Switch back to latest version when 5.5 is corrected
2023-06-30 14:17:59 +02:00
gpodder # Podcast Manager
2023-03-29 19:58:48 +02:00
gretl # Econometric Analysis
2023-09-14 18:56:52 +02:00
gzdoom # Doom Clone based on ZDoom
2023-03-29 19:58:48 +02:00
josm # Extensible editor for OpenStreetMap
2024-02-23 20:13:12 +01:00
keepassxc # GUI Password Manager with Cryptography
2023-03-29 19:58:48 +02:00
kitty # Terminal Emulator
kitty-themes # Kitty Themes
librewolf # Firefox Web Browser Fork
libsForQt5.kolourpaint # Painting Application
libsForQt5.k3b # Disk Burning Application
2024-01-24 19:52:37 +01:00
localsend # Send Files/Text Over Wifi
2023-12-28 16:58:49 +01:00
llpp # PDF Viewer
2023-12-28 16:54:05 +01:00
mpv # Media Player
mupdf # PDF Viewer
2023-05-03 22:32:29 +02:00
nomachine-client # NoMachine remote desktop client (nxplayer)
nomacs # Qt-based image viewer
2024-01-24 16:32:26 +01:00
nuclear # Music Streamer
2023-03-29 19:58:48 +02:00
onlyoffice-bin # Office Suite
p7zip # File Archiver
pdfarranger # PDF Arranger
2023-10-15 22:00:06 +02:00
python3 # python langugage
2023-03-29 19:58:48 +02:00
qbittorrent # Torrent Application
2024-01-24 20:55:18 +01:00
#qgis # A Free and Open Source Geographic Information System
#retroarchFull # Multi-Platform Emulator
2024-02-26 02:52:39 +01:00
rustdesk # Remote Desktop Software
rstudioWrapper # Integrated Tools for the R Language
2023-03-29 19:58:48 +02:00
smplayer # Media Player
solaar # Logitech Unifying Receiver
2024-01-24 16:32:26 +01:00
soundconverter # GTK Audio file converter
2023-03-29 19:58:48 +02:00
strawberry # Media Player
2023-09-14 18:56:52 +02:00
speedcrunch # Calculator
2024-02-26 02:52:39 +01:00
thunderbird # Thunderbird Email Client
2023-03-29 19:58:48 +02:00
tor-browser-bundle-bin # Privacy Web Browser
2023-04-18 04:49:47 +02:00
ventoy # USB Boot App
2023-03-29 19:58:48 +02:00
veracrypt # Filesystem Encryption
2023-04-03 06:09:10 +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
2024-03-21 03:00:23 +01:00
];
2024-03-21 02:43:27 +01:00
2023-03-25 23:30:29 +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:30:29 +01:00
../../common/git.nix
2024-01-27 02:47:45 +01:00
../../common/vscodium.nix
2023-03-25 23:30:29 +01:00
];
2023-02-14 22:00:19 +01:00
2023-03-25 23:30:29 +01:00
home.stateVersion = "22.11";
};
2023-03-19 22:37:52 +01:00
}