fmt: reformatted using nixpkgs-fmt prettifier mpd: created configuration hypr: add window rules commons: add usingMusicPlayerDaemon variable
17 lines
412 B
Nix
17 lines
412 B
Nix
{ pkgs, ... }: {
|
|
xdg = {
|
|
enable = true;
|
|
userDirs.enable = true;
|
|
mimeApps = {
|
|
enable = true;
|
|
defaultApplications = {
|
|
"application/pdf" = "org.kde.okular.desktop";
|
|
"image/png" = "sxiv.desktop";
|
|
"image/jpeg" = "sxiv.desktop";
|
|
"image/jpg" = "sxiv.desktop";
|
|
"image/webp" = "sxiv.desktop";
|
|
"image/heif" = "sxiv.desktop";
|
|
};
|
|
};
|
|
};
|
|
}
|