updaet some apckage names

This commit is contained in:
William 2026-01-28 18:41:52 -03:00
parent 815524d513
commit c6c444ae8f
4 changed files with 36 additions and 13 deletions

View file

@ -86,14 +86,7 @@
enable = true;
packages = [
### Office & Productivity ###
rec {
appId = "com.collabora.Office";
sha256 = "1im6s8p6wvj2hblr4mhn1g2rry77giccsi6mk76nk8d6bjp1fwa4";
bundle = "${pkgs.fetchurl {
url = "https://cdn.collaboraoffice.com/collaboraoffice-v25.04.7.2_final.flatpak";
inherit sha256;
}}";
}
"com.collabora.Office"
### Graphics & Design ###
"com.boxy_svg.BoxySVG"
rec {

View file

@ -30,7 +30,7 @@
"io.itch.itch"
"io.mrarm.mcpelauncher"
"net.retrodeck.retrodeck"
"org.freedesktop.Platform.VulkanLayer.MangoHud/x86_64/24.08"
"org.freedesktop.Platform.VulkanLayer.MangoHud/x86_64/25.08"
rec {
appId = "com.hypixel.HytaleLauncher";
sha256 = "01307s44bklc1ldcigcn9n4lm8hf8q793v9fv7w4w04xd5zyh4rv";

View file

@ -12,12 +12,14 @@
home.packages = with pkgs; [ xwayland-satellite ];
services.vicinae = {
enable = true;
systemd = {
enable = true;
autoStart = true;
};
};
programs = {
ghostty = {
enable = true;
settings = {

View file

@ -1,5 +1,33 @@
{ ... }:
{ config, ... }:
{
programs.mangohud.enable = true;
programs.mangohud = {
enable = true;
enableSessionWide = true;
settings = {
position = "top-left";
fps = true;
frametime = false;
frame_timing = false;
gpu_stats = true;
gpu_temp = true;
gpu_power = true;
cpu_stats = true;
cpu_temp = true;
cpu_power = true;
ram = true;
vram = true;
gamemode = false;
vkbasalt = false;
version = false;
engine_version = false;
vulkan_driver = false;
wine = false;
time = false;
fps_sampling_period = 500;
toggle_hud = "Shift_L+F12";
toggle_logging = "Ctrl_L+F2";
output_folder = "${config.home.homeDirectory}/.local/share/mangohud";
};
};
}