From 79ff636fa4676f66c189d7cef364324157af6b8c Mon Sep 17 00:00:00 2001 From: GarandPLG Date: Wed, 29 Apr 2026 19:55:59 +0200 Subject: [PATCH] Add Upscaler flatpak and host config options --- hosts/Garand-Desktop/system-modules.nix | 1 + hosts/Garand-Laptop/system-modules.nix | 1 + hosts/default/system-modules.nix | 1 + modules/core/flatpak.nix | 1 + 4 files changed, 4 insertions(+) diff --git a/hosts/Garand-Desktop/system-modules.nix b/hosts/Garand-Desktop/system-modules.nix index 9657593..ce4dc6c 100644 --- a/hosts/Garand-Desktop/system-modules.nix +++ b/hosts/Garand-Desktop/system-modules.nix @@ -10,6 +10,7 @@ _: { sober.enable = false; # Roblox client warehouse.enable = true; # Flatpak manager flatseal.enable = true; # Flatpak permissions manager + upscaler.enable = true; # Upscaler: Upscale and enhance images }; }; diff --git a/hosts/Garand-Laptop/system-modules.nix b/hosts/Garand-Laptop/system-modules.nix index 9657593..a3b59f0 100644 --- a/hosts/Garand-Laptop/system-modules.nix +++ b/hosts/Garand-Laptop/system-modules.nix @@ -10,6 +10,7 @@ _: { sober.enable = false; # Roblox client warehouse.enable = true; # Flatpak manager flatseal.enable = true; # Flatpak permissions manager + upscaler.enable = false; # Upscaler: Upscale and enhance images }; }; diff --git a/hosts/default/system-modules.nix b/hosts/default/system-modules.nix index 9bc4c91..15dcdee 100644 --- a/hosts/default/system-modules.nix +++ b/hosts/default/system-modules.nix @@ -10,6 +10,7 @@ _: { sober.enable = false; # Roblox client warehouse.enable = true; # Flatpak manager flatseal.enable = true; # Flatpak permissions manager + upscaler.enable = false; # Upscaler: Upscale and enhance images }; }; diff --git a/modules/core/flatpak.nix b/modules/core/flatpak.nix index 001b462..71fa054 100644 --- a/modules/core/flatpak.nix +++ b/modules/core/flatpak.nix @@ -14,6 +14,7 @@ sober = "org.vinegarhq.Sober"; warehouse = "io.github.flattool.Warehouse"; flatseal = "com.github.tchx84.Flatseal"; + upscaler = "io.gitlab.theevilskeleton.Upscaler"; }; in { options.flatpak.enable = lib.mkEnableOption "Flatpak";