From 83d3c27371be45db9e1ce8f76f61b1f768366f62 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Sun, 19 Oct 2025 17:21:55 +0200 Subject: [PATCH] feat(desktop): install easyeffects, fix icon's missing. --- hosts/skadi/configuration.nix | 4 ++-- hosts/skadi/home.nix | 12 ++++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/hosts/skadi/configuration.nix b/hosts/skadi/configuration.nix index 7e7fb80..e53ab66 100644 --- a/hosts/skadi/configuration.nix +++ b/hosts/skadi/configuration.nix @@ -114,8 +114,8 @@ # Enable ratbagd to customize mouse options services.ratbagd.enable = true; - # Enable noisetorch - programs.noisetorch.enable = true; + # Enable dconf + programs.dconf.enable = true; # Enable AAGL programs.anime-game-launcher.enable = true; diff --git a/hosts/skadi/home.nix b/hosts/skadi/home.nix index 3ebb4f0..cc228db 100644 --- a/hosts/skadi/home.nix +++ b/hosts/skadi/home.nix @@ -28,6 +28,18 @@ # Let Home Manager install and manage itself. programs.home-manager.enable = true; + # Easyeffects + services.easyeffects.enable = true; + + # Fix missing icons + gtk = { + enable = true; + iconTheme = { + package = pkgs.adwaita-icon-theme; + name = "Adwaita"; + }; + }; + # Enable crony flake specific settings crony.mangohud.enable = true; crony.gaming.enable = true;