nix-configs/modules/desktop/creative.nix

36 lines
589 B
Nix
Raw Permalink Normal View History

{pkgs, ...}: {
fonts.packages = with pkgs; [
(nerdfonts.override {fonts = ["FiraCode"];})
montserrat
noto-fonts
atkinson-hyperlegible
arkpandora_ttf
liberation_ttf
2023-11-23 17:54:35 +00:00
caladea
carlito
garamond-libre
ocr-a
2023-12-15 13:38:59 +00:00
amiri
];
fonts.fontDir.enable = true;
home-manager.users.jade = {pkgs, ...}: {
home.packages = with pkgs; [
audacity
krita
gimp-with-plugins
inkscape-with-extensions
obs-studio
kdenlive
fspy
scribus
2023-02-13 11:54:21 +00:00
2024-02-27 17:18:26 +00:00
fontforge-gtk
2023-12-10 22:21:28 +00:00
libreoffice
2023-11-23 17:54:35 +00:00
typst
2023-03-20 22:40:08 +00:00
rawtherapee
];
2023-02-13 11:54:21 +00:00
};
}