Compare commits

..

No commits in common. "3ed5eb575743db75c30061e806bbc1f991fba10d" and "a68d9b30fc4a5f19f6a96229cb86de5bfd6b480a" have entirely different histories.

4 changed files with 0 additions and 43 deletions

View file

@ -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"
}

View file

@ -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;

View file

@ -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 = {

View file

@ -1,6 +0,0 @@
{ pkgs }:
pkgs.writeShellScriptBin "search-music-and-launch" ''
mpc clear
mpc add $(mpc listall | ${pkgs.fuzzel}/bin/fuzzel --dmenu)
mpc play
''