change to gnome, remove stuff

This commit is contained in:
Mohamed Chrayed 2024-10-06 15:46:59 +02:00
parent 0747fe1185
commit ce94f5df61
5 changed files with 14 additions and 24 deletions

View File

@ -46,21 +46,19 @@
./modules/system/users ./modules/system/users
]; ];
desktopSystemModules = hostName:[ desktopSystemModules = hostName:[
#./modules/system/ai
./modules/system/apps-misc ./modules/system/apps-misc
./modules/system/browser ./modules/system/browser
./modules/system/flatpak ./modules/system/flatpak
./modules/system/plasma ./modules/system/gnome
./modules/system/syncthing-${hostName} ./modules/system/syncthing-${hostName}
]; ];
displaySystemModules = [ displaySystemModules = [
./modules/system/sddm ./modules/system/gdm
]; ];
gamingSystemModules = hostName:[ gamingSystemModules = hostName:[
./modules/system/controller ./modules/system/controller
./modules/system/jovian-${hostName} ./modules/system/jovian-${hostName}
./modules/system/lact ./modules/system/lact
./modules/system/retrodeck
./modules/system/steam ./modules/system/steam
./modules/system/sunshine-${hostName} ./modules/system/sunshine-${hostName}
]; ];
@ -75,7 +73,7 @@
./modules/user/shell ./modules/user/shell
]; ];
desktopUserModules = [ desktopUserModules = [
./modules/user/plasma ./modules/user/gnome
]; ];
gamingUserModules = [ gamingUserModules = [
./modules/user/steam ./modules/user/steam

View File

@ -1,11 +0,0 @@
{ ... }:
{
services.ollama = {
enable = true;
acceleration = "rocm";
environmentVariables = {
HCC_AMDGPU_TARGET = "gfx1100";
HSA_OVERRIDE_GFX_VERSION="11.0.0";
};
};
}

View File

@ -4,7 +4,7 @@
enable = true; enable = true;
autoStart = true; autoStart = true;
user = user; user = user;
desktopSession = "plasma"; desktopSession = "gnome";
}; };
jovian.decky-loader.enable = true; jovian.decky-loader.enable = true;
jovian.decky-loader.user = user; jovian.decky-loader.user = user;

View File

@ -1,4 +1,13 @@
{ ... }: { user, ... }:
{ {
jovian.steam = {
enable = true;
autoStart = false;
user = user;
desktopSession = "gnome";
};
jovian.decky-loader.enable = true;
jovian.decky-loader.user = user;
jovian.steamos.enableBluetoothConfig = true;
hardware.enableRedistributableFirmware = true; hardware.enableRedistributableFirmware = true;
} }

View File

@ -1,6 +0,0 @@
{ ... }:
{
services.flatpak.packages = [
{ appId = "net.retrodeck.retrodeck"; origin = "flathub"; }
];
}