omniflake/home/default.nix
2025-05-03 20:24:51 +02:00

55 lines
651 B
Nix

{ config, pkgs, inputs, lib, ... }:
{
home.packages = with pkgs; [
# messenger
element-desktop
signal-desktop
tdesktop
# office
xournalpp
pdfpc
# text publishing
libreoffice
jdk
poppler_utils
zotero
# graphics
gimp
inkscape
# web
chromium
nyxt
# media
bookworm
heroic
anki-bin
freetube
qbittorrent
nicotine-plus
# other
quickemu
];
imports = [
./slim-desktop.nix
./gnome
./firefox.nix
./librewolf.nix
./tex.nix
./fonts.nix
];
programs.obs-studio.enable = true;
programs.kitty.enable = true;
}