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

@ -28,6 +28,7 @@
sponsorblock
link-cleaner
canvasblocker
brotab
a11ycss
view-image
wappalyzer

View file

@ -1,7 +1,8 @@
{nur, ...}: {
programs.librewolf.profiles.main.extensions = {
packages = with nur.repos.rycee.firefox-addons; [
adnauseam
#adnauseam
ublock-origin
];
settings = {
};

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
];
}

View file

@ -9,6 +9,9 @@
};
};
in {
xdg.mimeApps.defaultApplications = {
"text/plain" = "nvim.desktop";
};
programs.nixvim = {
enable = true;
defaultEditor = true;

View file

@ -14,13 +14,13 @@
jujutsu = {
enable = true;
};
delta = {
enable = true;
};
git = {
inherit (tree.home.user.data) userName userEmail;
package = pkgs.gitFull;
enable = true;
delta = {
enable = true;
};
extraConfig = {
init = {defaultBranch = "main";};
protocol.gcrypt.allow = "always";