This repository has been archived on 2024-11-22. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-old/modules/desktop/art.nix

26 lines
710 B
Nix
Raw Normal View History

/* -------------------------------------------------------------------------- */
/* Art tools config */
/* -------------------------------------------------------------------------- */
{ lib, config, options, pkgs, ... }:
with lib;
let cfg = config.modules.desktop.art;
in {
options.modules.desktop.art = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
/* Driver includes support for Huion Kamvas Pro */
hardware.opentabletdriver.enable = true;
#services.xserver.digimend.enable = true;
environment.systemPackages = with pkgs; [
aseprite
krita
inkscape
blockbench
];
};
}