Files
nix-config/modules/graphical/basics.nix
Kopatz a0473286cd gimp
2025-05-18 23:02:41 +02:00

39 lines
851 B
Nix

{ config, pkgs, inputs, lib, ... }:
with lib;
let cfg = config.custom.graphical.basics;
in {
options.custom.graphical.basics = {
enable = mkEnableOption "Enables basics";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
keepassxc
discord
gvfs
remmina
thunderbird
localsend
#element-desktop
#krita
gimp3
libreoffice
hunspell # needed for libreoffice spellcheck
hunspellDicts.en_US-large
hunspellDicts.de_AT
#anki TODO broken because pyqt6 build fails
p7zip
qbittorrent
brightnessctl
#wacomtablet
pinta # paint
#qalculate-qt # calculator TODO build broken
#libsForQt5.kcalc
#syncthingtray #doesnt work with socket yet
v4l-utils
logseq # notes
ani-cli
];
};
}