Compare commits

..

2 commits

3 changed files with 17 additions and 5 deletions

View file

@ -114,8 +114,8 @@
# Enable ratbagd to customize mouse options # Enable ratbagd to customize mouse options
services.ratbagd.enable = true; services.ratbagd.enable = true;
# Enable noisetorch # Enable dconf
programs.noisetorch.enable = true; programs.dconf.enable = true;
# Enable AAGL # Enable AAGL
programs.anime-game-launcher.enable = true; programs.anime-game-launcher.enable = true;

View file

@ -28,6 +28,18 @@
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.
programs.home-manager.enable = true; 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 # Enable crony flake specific settings
crony.mangohud.enable = true; crony.mangohud.enable = true;
crony.gaming.enable = true; crony.gaming.enable = true;

View file

@ -34,7 +34,7 @@
*) volumep="100%" ;; *) volumep="100%" ;;
esac esac
notify-send -h string:x-canonical-private-synchronous:sys-notify "🔊 Volume: ''${volumep}" ${pkgs.libnotify}/bin/notify-send -h string:x-canonical-private-synchronous:sys-notify "🔊 Volume: ''${volumep}"
''; '';
toggle-sound-output = pkgs.writeShellScriptBin "toggle-sound-output" '' toggle-sound-output = pkgs.writeShellScriptBin "toggle-sound-output" ''
#!/usr/bin/env sh #!/usr/bin/env sh
@ -65,10 +65,10 @@
if [ "$(nmcli --overview -f GENERAL.STATE connection show hetz)" = "" ]; then if [ "$(nmcli --overview -f GENERAL.STATE connection show hetz)" = "" ]; then
nmcli con up hetz nmcli con up hetz
notify-send "VPN" "UP" ${pkgs.libnotify}/bin/notify-send "VPN" "UP"
else else
nmcli con down hetz nmcli con down hetz
notify-send "VPN" "DOWN" ${pkgs.libnotify}/bin/notify-send "VPN" "DOWN"
fi fi
''; '';