diff --git a/home/crow/Parzival.nix b/home/crow/Parzival.nix index c38623c..47e2ffc 100644 --- a/home/crow/Parzival.nix +++ b/home/crow/Parzival.nix @@ -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 = [ diff --git a/home/crow/common/optional/misc/ai.nix b/home/crow/common/optional/misc/ai.nix new file mode 100644 index 0000000..63330ac --- /dev/null +++ b/home/crow/common/optional/misc/ai.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: +{ + home.packages = builtins.attrValues { + inherit (pkgs.unstable) + lmstudio + ; + }; +}