omniflake/home/default.nix
2025-06-27 16:05:21 +02:00

54 lines
630 B
Nix

{ config, pkgs, inputs, lib, ... }:
{
home.packages = with pkgs; [
# messenger
signal-desktop
tdesktop
# office
xournalpp
pdfpc
# text publishing
libreoffice
jdk
poppler_utils
zotero
lorem
# graphics
gimp
inkscape
# web
chromium
nyxt
# media
bookworm
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;
}