This commit is contained in:
kenji
2025-07-02 21:09:17 -05:00
parent 27cc1641f2
commit c08bc7a576
3 changed files with 20 additions and 1 deletions
+1
View File
@@ -2,5 +2,6 @@
imports = [
../system/stream.nix
../system/gaming.nix
../system/appimage.nix
];
}
+15
View File
@@ -0,0 +1,15 @@
{
programs.appimage = {
enable = true;
binfmt = true;
# If moondeck-buddy.AppImage requires specific libraries not included by default
# you might need to add them here. For example:
# package = pkgs.appimage-run.override {
# extraPkgs = pkgs: with pkgs; [
# # Add any missing libraries here, e.g.,
# # libthai
# # qt5.full
# ];
# };
};
}
+4 -1
View File
@@ -1,4 +1,7 @@
{
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
sunshine
];
services.sunshine = {
enable = true;
autoStart = true;