nix-config/home/duti.nix

19 lines
646 B
Nix
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ pkgs, ... }: {
home.packages = [ pkgs.duti ];
xdg.configFile."duti/config".text = ''
# browser (html работает, url/xhtml - Apple блокирует)
com.google.Chrome public.html all
# markdown viewer
MarkEdit net.daringfireball.markdown all
MarkEdit public.markdown all
# mail
com.apple.mail public.email-message all
# для .url, .pdf, .sh, .txt - настраивать вручную через Finder
# (Apple блокирует CLI настройку системных UTI на Sonoma+)
'';
# defaults applied via system.activationScripts.defaultApps in hosts/poppy/default.nix
}