mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-25 13:42:33 -05:00
48 lines
723 B
Nix
48 lines
723 B
Nix
{
|
|
lib,
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
|
|
imports = lib.flatten [
|
|
inputs.deferred-apps.homeManagerModules.default
|
|
];
|
|
|
|
programs.deferredApps = {
|
|
enable = true;
|
|
packages = builtins.attrValues {
|
|
inherit (pkgs.unstable)
|
|
# CAD
|
|
orca-slicer
|
|
super-slicer
|
|
meshlab
|
|
openscad
|
|
freecad
|
|
blender
|
|
# Local AI
|
|
lmstudio
|
|
;
|
|
inherit (pkgs)
|
|
# Utilities
|
|
appimage-run
|
|
steam-run
|
|
bitwarden-cli
|
|
protonvpn-gui
|
|
imagemagick
|
|
httpie
|
|
distrobox
|
|
distroshelf
|
|
# Art
|
|
gimp
|
|
krita
|
|
;
|
|
};
|
|
apps = [
|
|
# Comms
|
|
"signal-desktop"
|
|
];
|
|
};
|
|
|
|
}
|