add lmstudio

This commit is contained in:
TheWanderingCrow 2025-12-19 10:17:39 -05:00
parent 170d1447df
commit a0877b3d81
2 changed files with 11 additions and 1 deletions

View file

@ -1,4 +1,5 @@
{lib, ...}: {
{ lib, ... }:
{
imports = [
common/core
common/optional/desktops/sway
@ -8,6 +9,7 @@
common/optional/gaming
common/optional/misc/gromit-mpx.nix
common/optional/misc/art.nix
common/optional/misc/ai.nix
];
monitors = [

View file

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