flake/users/zonsopkomst/home-manager.nix

60 lines
2.9 KiB
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
2023-03-19 20:18:11 +01:00
home-manager.users.zonsopkomst = { pkgs, ... }: {
2023-03-25 23:09:33 +01:00
home.packages = with pkgs; [
2023-03-29 19:58:48 +02:00
armcord # Discord Client
bleachbit # PC Cleaner
calibre # eBook Library
crow-translate # Language Translator
dconf2nix # Nixify Gnome Config File
dino # XMPP Client
element-desktop # Matrix Client
easytag # Music Tag Editor
freetube # YouTube Front-End
gImageReader # Tesseract-OCR Front-End
gnucash # Double Entry Accounting Software
2023-08-16 17:08:34 +02:00
gnome-frog # Text extraction tool (OCR)
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
kitty # Terminal Emulator
kitty-themes # Kitty Themes
keepassxc # GUI Password Manager with Cryptography
librewolf # Firefox Web Browser Fork
libsForQt5.kolourpaint # Painting Application
libsForQt5.k3b # Disk Burning Application
mpv # Media Player
2023-05-03 22:32:29 +02:00
nomachine-client # NoMachine remote desktop client (nxplayer)
2023-03-29 19:58:48 +02:00
onlyoffice-bin # Office Suite
p7zip # File Archiver
pdfarranger # PDF Arranger
qbittorrent # Torrent Application
qgis # A Free and Open Source Geographic Information System
retroarchFull # Multi-Platform Emulator
smplayer # Media Player
solaar # Logitech Unifying Receiver
strawberry # Media Player
2023-09-04 00:29:13 +02:00
rustdesk # Remote Desktop Software
2023-09-14 18:56:52 +02:00
rstudioWrapper # Integrated Tools for the R Language
speedcrunch # Calculator
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-03-25 23:09:33 +01:00
];
2023-03-14 03:11:05 +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
# TODO ../../common/starship.nix
2023-09-14 18:56:52 +02: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
}