move some misc stuff into deferred apps

This commit is contained in:
TheWanderingCrow 2026-02-13 15:20:08 -05:00
parent 778be6480a
commit 90d25fb17a
10 changed files with 8 additions and 241 deletions

View file

@ -14,21 +14,28 @@
enable = true;
packages = builtins.attrValues {
inherit (pkgs.unstable)
# CAD
orca-slicer
super-slicer
meshlab
openscad
freecad
# Local AI
lmstudio
;
inherit (pkgs)
# Utilities
appimage-run
steam-run
bitwarden-cli
protonvpn-gui
imagemagick
httpie
mkvtoolnix
distrobox
distroshelf
# Art
gimp
krita
;
};
apps = [ "signal-desktop" ];

View file

@ -1,8 +0,0 @@
{ pkgs, ... }:
{
home.packages = builtins.attrValues {
inherit (pkgs.unstable)
lmstudio
;
};
}

View file

@ -1,8 +0,0 @@
{pkgs, ...}: {
home.packages = builtins.attrValues {
inherit
(pkgs)
krita
;
};
}

View file

@ -1,20 +0,0 @@
# Allows drawing over the screen overlay with our fancy wacom tablet
{pkgs, ...}: let
makimaConfig = ''
[commands]
BTN_STYLUS = ["gromit-mpx -t"]
[settings]
GRAB_DEVICE = "false"
'';
in {
home.file.".config/makima/Wacom One by Wacom S Pen.toml".text = makimaConfig;
home.packages = builtins.attrValues {
inherit
(pkgs)
makima
gromit-mpx
;
};
}