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";