39e6276c7d
Tooling: - nh + nvd/nom/statix/deadnix/comma (new programs/nix.nix); GC via nh clean - zoxide (cd), atuin, just, lazydocker, dust, duf, difftastic (git dft) Structure: - rename desktop -> konishi; homeConfigurations -> "user@host" for nh autodetect Removals (heavy/unused): - android-studio, unity/.NET/omnisharp/vscode, kicad, zoom, calibre, google-fonts, nerd-dictation Screen recording: - kooha + vokoscreen-ng + `webcam` corner-cam command/window-rule Fixes: - WEBKIT_DISABLE_DMABUF_RENDERER moved to common (electron/tauri on intel) - kitty pinned to Catppuccin-Mocha; darkman no longer toggles kitty/claude - claude theme dark + statusline locale fix - ssh: migrate to settings API + multiplexing/keepalive/AddKeysToAgent; gpg-agent enableSshSupport - silence hyprland configType / gtk4 / xdg userDirs deprecations Flake hygiene: - follows=nixpkgs for foundry/hardware/rose-pine/zen/spicetify (10->5 nixpkgs) - zoxide _ZO_DOCTOR=0 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
59 lines
1.6 KiB
Nix
59 lines
1.6 KiB
Nix
_:
|
|
{
|
|
xdg = {
|
|
userDirs = {
|
|
enable = true;
|
|
createDirectories = false;
|
|
# Keep exporting XDG_*_DIR as session variables (new default is false).
|
|
setSessionVariables = true;
|
|
desktop = null;
|
|
documents = null;
|
|
download = "downloads";
|
|
music = null;
|
|
pictures = null;
|
|
publicShare = null;
|
|
templates = null;
|
|
videos = null;
|
|
};
|
|
|
|
mimeApps = {
|
|
enable = true;
|
|
defaultApplications = {
|
|
# web
|
|
"text/html" = "zen-twilight.desktop";
|
|
"x-scheme-handler/http" = "zen-twilight.desktop";
|
|
"x-scheme-handler/https" = "zen-twilight.desktop";
|
|
"x-scheme-handler/avbout" = "zen-twilight.desktop";
|
|
"x-scheme-handler/unknown" = "zen-twilight.desktop";
|
|
|
|
# video
|
|
"video/mp4" = "mpv.desktop";
|
|
"video/webm" = "mpv.desktop";
|
|
"video/x-flv" = "mpv.desktop";
|
|
"video/x-matroska" = "mpv.desktop";
|
|
"video/x-ms-wmv" = "mpv.desktop";
|
|
|
|
# images
|
|
"image/jpeg" = "imv.desktop";
|
|
"image/png" = "imv.desktop";
|
|
|
|
# pdfs
|
|
"application/pdf" = "org.pwmt.zathura.desktop";
|
|
"application/fdf" = "org.pwmt.zathura.desktop";
|
|
"application/pdx" = "org.pwmt.zathura.desktop";
|
|
"application/x-pdf" = "org.pwmt.zathura.desktop";
|
|
"application/xfdf" = "org.pwmt.zathura.desktop";
|
|
|
|
# files
|
|
"inode/directory" = "thunar.desktop";
|
|
|
|
# 3d printing
|
|
"model/3mf" = "PrusaSlicer.desktop";
|
|
"application/x-3mf" = "PrusaSlicer.desktop";
|
|
"model/stl" = "PrusaSlicer.desktop";
|
|
"application/sla" = "PrusaSlicer.desktop";
|
|
};
|
|
};
|
|
};
|
|
}
|