diff --git a/programs/zed.nix b/programs/zed.nix index 639bd20..0fa72a1 100644 --- a/programs/zed.nix +++ b/programs/zed.nix @@ -5,7 +5,6 @@ extensions = [ "basher" "clean-vscode-icons" - "caddyfile" "clojure" "dockerfile" "earthfile" @@ -45,23 +44,12 @@ } ]; languages = { - Caddyfile = { - tab_size = 2; - formatter.external = { - command = "${pkgs.caddy}/bin/caddy"; - arguments = [ "fmt" "-c" "-" ]; - }; - }; Julia = { formatter = { external = { command = "jlfmt"; }; }; }; LaTeX = { formatter = { external = { - command = let - latexindent = (pkgs.texlive.combine { - inherit (pkgs.texlive) scheme-minimal latexindent; - }); - in "${latexindent}/bin/latexindent"; - arguments = [ "-m" "-tt" "-l" "-" ]; + command = "tex-fmt"; + arguments = [ "--stdin" ]; }; }; }; @@ -76,9 +64,9 @@ (builtins.getFlake (builtins.toString ~/.config/home-manager)).homeConfigurations."millironx@${hostname}".options''; }; texlab = { - settings.texlab = { + settings = { build = { - onSave = true; + onSave = false; forwardSearchAfter = true; }; forwardSearch = if pkgs.stdenv.hostPlatform.isDarwin then { diff --git a/services/tailscale.nix b/services/tailscale.nix deleted file mode 100644 index 327afc6..0000000 --- a/services/tailscale.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ ... }: { - services.tailscale = { - enable = true; - useRoutingFeatures = "server"; - }; -} diff --git a/services/vaultwarden.nix b/services/vaultwarden.nix index d58a40e..3d452bf 100644 --- a/services/vaultwarden.nix +++ b/services/vaultwarden.nix @@ -130,7 +130,6 @@ in { PUSH_ENABLED = "true"; SIGNUPS_ALLOWED = "false"; SMTP_FROM_NAME = "Milliron X Vault"; - SMTP_SECURITY = "force_tls"; SSO_ENABLED = "true"; SSO_ONLY = "true"; SSO_AUTHORITY = diff --git a/systems/linux/mcentire.nix b/systems/linux/mcentire.nix index 998b024..0e78845 100644 --- a/systems/linux/mcentire.nix +++ b/systems/linux/mcentire.nix @@ -15,7 +15,6 @@ ./../../services/navidrome.nix ./../../services/openssh.nix ./../../services/searxng.nix - ./../../services/tailscale.nix ./../../services/vaultwarden.nix ]; @@ -70,6 +69,8 @@ }; services = { + tailscale.enable = true; + # Do not "enable" database services, but include the package configuration # so that borgmatic does not freak out about unset variables postgresql.package = pkgs.postgresql_17;