nix-configs/modules/desktop/creative.nix

31 lines
561 B
Nix
Raw Normal View History

{ pkgs, ... }: {
fonts.packages = with pkgs; [
(nerdfonts.override { fonts = [ "FiraCode" ]; })
montserrat
noto-fonts
atkinson-hyperlegible
arkpandora_ttf
liberation_ttf
ocr-a
];
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
onlyoffice-bin
2023-03-20 22:40:08 +00:00
digikam
darktable
rawtherapee
];
2023-02-13 11:54:21 +00:00
};
}