omniflake/home/default.nix
2024-11-06 19:12:58 +01:00

65 lines
768 B
Nix

{ config, pkgs, inputs, lib, ... }:
{
home.packages = with pkgs; [
# messenger
element-desktop
signal-desktop
tdesktop
# office
okular
xournalpp
zoom-us
pdfpc
# text publishing
libreoffice
poppler_utils
zotero
pdftk
# graphics
drawing
gimp
godot_4
inkscape
imagemagick
ghostscript
scrcpy
# openshot-qt
# audacity
#wkhtmltopdf
# web
chromium
# mullvad-vpn
# nyxt
# media
bookworm
heroic
anki-bin
castget
freetube
qbittorrent
nicotine-plus
# other
quickemu
];
imports = [
./minimal.nix
./gnome
./firefox.nix
./tex.nix
./fonts.nix
];
programs.obs-studio.enable = true;
}