feat: vicinae, update servers

This commit is contained in:
Kat Inskip 2025-12-09 05:34:53 -08:00
parent 0e91b2184d
commit edd507c0ec
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
20 changed files with 188 additions and 187 deletions

View file

@ -1,20 +1,58 @@
{pkgs, ...}: {
{
pkgs,
lib,
...
}: let
inherit (lib.attrsets) genAttrs;
in {
xdg.mimeApps.defaultApplications = let
genDefault = application: types: genAttrs types (_: application);
imageTypes = map (x: "image/${x}") [
"apng"
"avif"
"bmp"
"gif"
"heic"
"heif"
"jpeg"
"png"
"svg+xml"
"webp"
];
videoTypes = map (x: "video/${x}") [
"AV1"
"H264"
"H265"
"matroska"
"mp4"
"MPV"
"mpeg"
"ogg"
"VP8"
"VP9"
];
imageDefaults = genDefault "imv.desktop" imageTypes;
videoDefaults = genDefault "mpv.desktop" videoTypes;
combinedDefaults = imageDefaults // videoDefaults;
in
combinedDefaults;
home.packages = with pkgs; [
anki
# Task managers
btop
htop
# Imagery
aseprite
imv
gimp
# Chat
telegram-desktop # Telegram
signal-desktop
fluffychat
dino
mumble
keymapp
# Archivery
xarchiver
unzip
zip
p7zip
@ -30,7 +68,5 @@
pwvucontrol
veracrypt
deluge
gimp
xarchiver
];
}