mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 23:26:23 +01:00
35 lines
591 B
Nix
35 lines
591 B
Nix
{pkgs, ...}: {
|
|
fonts.packages = with pkgs; [
|
|
(nerdfonts.override {fonts = ["FiraCode"];})
|
|
montserrat
|
|
noto-fonts
|
|
atkinson-hyperlegible
|
|
arkpandora_ttf
|
|
liberation_ttf
|
|
caladea
|
|
carlito
|
|
garamond-libre
|
|
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
|
|
|
|
onlyoffice-bin
|
|
typst
|
|
|
|
digikam
|
|
darktable
|
|
rawtherapee
|
|
];
|
|
};
|
|
}
|