update system

This commit is contained in:
2025-08-11 17:15:37 +02:00
parent 5c9bf6838c
commit d3f752328f
12 changed files with 25 additions and 344 deletions

View File

@@ -17,7 +17,6 @@
# browsers
firefox
chromium
brave
# media
jellyfin-media-player

View File

@@ -27,6 +27,10 @@ in
systemd.enable = false;
package = null;
portalPackage = null;
settings.ecosystem = {
no_update_news = true;
no_donation_nag = true;
};
};
home = {
packages = with pkgs; [ grim ];

View File

@@ -54,6 +54,8 @@ in
home-manager.users.${username}.wayland.windowManager.hyprland.settings = {
cursor.no_hardware_cursors = true;
opengl.nvidia_anti_flicker = true;
# render.direct_scanout = 1;
};
environment = {

View File

@@ -27,7 +27,7 @@ in
};
monitor = [ "DP-1,2560x1440@75,0x0,1" ];
xwayland.force_zero_scaling = true;
misc.vrr = 2; # VA suffers from VRR flicker
misc.vrr = 0; # VA suffers from VRR flicker
};
};
}

View File

@@ -20,7 +20,10 @@ in
enable = true;
extraBackends = [ pkgs.sane-airscan ];
};
services.printing.enable = true;
services.printing = {
enable = true;
stateless = true;
};
services.avahi = {
enable = true;
nssmdns4 = true;

View File

@@ -50,6 +50,12 @@ in
};
spiceUSBRedirection.enable = true;
};
services.spice-vdagentd.enable = true;
networking.firewall.trustedInterfaces = [ "virbr0" ];
services = {
spice-vdagentd.enable = true;
spice-webdavd.enable = true;
};
};
}