diff --git a/hosts/skadi/configuration.nix b/hosts/skadi/configuration.nix index e53ab66..7e7fb80 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 dconf - programs.dconf.enable = true; + # Enable noisetorch + programs.noisetorch.enable = true; # Enable AAGL programs.anime-game-launcher.enable = true; diff --git a/hosts/skadi/home.nix b/hosts/skadi/home.nix index cc228db..3ebb4f0 100644 --- a/hosts/skadi/home.nix +++ b/hosts/skadi/home.nix @@ -28,18 +28,6 @@ # 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; diff --git a/modules/linux/home-manager/hyprland.nix b/modules/linux/home-manager/hyprland.nix index bc0b54e..8980267 100644 --- a/modules/linux/home-manager/hyprland.nix +++ b/modules/linux/home-manager/hyprland.nix @@ -34,7 +34,7 @@ *) volumep="100%" ;; esac - ${pkgs.libnotify}/bin/notify-send -h string:x-canonical-private-synchronous:sys-notify "🔊 Volume: ''${volumep}" + notify-send -h string:x-canonical-private-synchronous:sys-notify "🔊 Volume: ''${volumep}" ''; toggle-sound-output = pkgs.writeShellScriptBin "toggle-sound-output" '' #!/usr/bin/env sh @@ -65,10 +65,10 @@ if [ "$(nmcli --overview -f GENERAL.STATE connection show hetz)" = "" ]; then nmcli con up hetz - ${pkgs.libnotify}/bin/notify-send "VPN" "UP" + notify-send "VPN" "UP" else nmcli con down hetz - ${pkgs.libnotify}/bin/notify-send "VPN" "DOWN" + notify-send "VPN" "DOWN" fi '';