diff --git a/home-manager/dotfiles/niri/config.kdl b/home-manager/dotfiles/niri/config.kdl index e834891..2a81bab 100644 --- a/home-manager/dotfiles/niri/config.kdl +++ b/home-manager/dotfiles/niri/config.kdl @@ -594,7 +594,6 @@ workspace "chat" window-rule { match at-startup=true app-id=r#"^discord$"# - match at-startup=true app-id=r#"^vesktop$"# match at-startup=true app-id=r#"^Beeper$"# open-on-workspace "chat" } diff --git a/home-manager/home.nix b/home-manager/home.nix index df7d0c8..c1b2d08 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -266,31 +266,6 @@ home.shell.enableZshIntegration = true; - programs.mpv = { - enable = true; - package = ( - pkgs.mpv-unwrapped.wrapper { - scripts = with pkgs.mpvScripts; [ - uosc - sponsorblock - mpv-notify-send - mpv-discord - youtube-upnext - ]; - - mpv = pkgs.mpv-unwrapped.override { - waylandSupport = true; - ffmpeg = pkgs.ffmpeg-full; - }; - } - ); - config = { - profile = "high-quality"; - ytdl-format = "bestvideo+bestaudio"; - cache-default = 4000000; - }; - }; - programs.zsh = { enable = true; enableCompletion = true; diff --git a/hosts/goober/features/software/workstation.nix b/hosts/goober/features/software/workstation.nix index 455840f..84907e3 100644 --- a/hosts/goober/features/software/workstation.nix +++ b/hosts/goober/features/software/workstation.nix @@ -17,7 +17,6 @@ zathura # music editing software reaper - surge libreoffice-qt hunspell @@ -71,16 +70,6 @@ osu-lazer-bin ]; - services.mpdscribble = { - enable = true; - endpoints = { - "last.fm" = { - passwordFile = "/run/secrets/lastfm_password"; - username = "ariburnznfire"; - }; - }; - }; - virtualisation.containers.enable = true; virtualisation = { podman = { diff --git a/scripts/search-music-and-launch.nix b/scripts/search-music-and-launch.nix deleted file mode 100644 index 6b51bef..0000000 --- a/scripts/search-music-and-launch.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ pkgs }: -pkgs.writeShellScriptBin "search-music-and-launch" '' - mpc clear - mpc add $(mpc listall | ${pkgs.fuzzel}/bin/fuzzel --dmenu) - mpc play -''