Compare commits
No commits in common. "d5e599c7c08f2fc60e19a8e0c1cf78acbb39251c" and "16ebf17d5120eeb82b751c8914375c513550f2a6" have entirely different histories.
d5e599c7c0
...
16ebf17d51
4 changed files with 6 additions and 24 deletions
|
|
@ -5,7 +5,6 @@
|
||||||
extensions = [
|
extensions = [
|
||||||
"basher"
|
"basher"
|
||||||
"clean-vscode-icons"
|
"clean-vscode-icons"
|
||||||
"caddyfile"
|
|
||||||
"clojure"
|
"clojure"
|
||||||
"dockerfile"
|
"dockerfile"
|
||||||
"earthfile"
|
"earthfile"
|
||||||
|
|
@ -45,23 +44,12 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
languages = {
|
languages = {
|
||||||
Caddyfile = {
|
|
||||||
tab_size = 2;
|
|
||||||
formatter.external = {
|
|
||||||
command = "${pkgs.caddy}/bin/caddy";
|
|
||||||
arguments = [ "fmt" "-c" "-" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
Julia = { formatter = { external = { command = "jlfmt"; }; }; };
|
Julia = { formatter = { external = { command = "jlfmt"; }; }; };
|
||||||
LaTeX = {
|
LaTeX = {
|
||||||
formatter = {
|
formatter = {
|
||||||
external = {
|
external = {
|
||||||
command = let
|
command = "tex-fmt";
|
||||||
latexindent = (pkgs.texlive.combine {
|
arguments = [ "--stdin" ];
|
||||||
inherit (pkgs.texlive) scheme-minimal latexindent;
|
|
||||||
});
|
|
||||||
in "${latexindent}/bin/latexindent";
|
|
||||||
arguments = [ "-m" "-tt" "-l" "-" ];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -76,9 +64,9 @@
|
||||||
(builtins.getFlake (builtins.toString ~/.config/home-manager)).homeConfigurations."millironx@${hostname}".options'';
|
(builtins.getFlake (builtins.toString ~/.config/home-manager)).homeConfigurations."millironx@${hostname}".options'';
|
||||||
};
|
};
|
||||||
texlab = {
|
texlab = {
|
||||||
settings.texlab = {
|
settings = {
|
||||||
build = {
|
build = {
|
||||||
onSave = true;
|
onSave = false;
|
||||||
forwardSearchAfter = true;
|
forwardSearchAfter = true;
|
||||||
};
|
};
|
||||||
forwardSearch = if pkgs.stdenv.hostPlatform.isDarwin then {
|
forwardSearch = if pkgs.stdenv.hostPlatform.isDarwin then {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
{ ... }: {
|
|
||||||
services.tailscale = {
|
|
||||||
enable = true;
|
|
||||||
useRoutingFeatures = "server";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -130,7 +130,6 @@ in {
|
||||||
PUSH_ENABLED = "true";
|
PUSH_ENABLED = "true";
|
||||||
SIGNUPS_ALLOWED = "false";
|
SIGNUPS_ALLOWED = "false";
|
||||||
SMTP_FROM_NAME = "Milliron X Vault";
|
SMTP_FROM_NAME = "Milliron X Vault";
|
||||||
SMTP_SECURITY = "force_tls";
|
|
||||||
SSO_ENABLED = "true";
|
SSO_ENABLED = "true";
|
||||||
SSO_ONLY = "true";
|
SSO_ONLY = "true";
|
||||||
SSO_AUTHORITY =
|
SSO_AUTHORITY =
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@
|
||||||
./../../services/navidrome.nix
|
./../../services/navidrome.nix
|
||||||
./../../services/openssh.nix
|
./../../services/openssh.nix
|
||||||
./../../services/searxng.nix
|
./../../services/searxng.nix
|
||||||
./../../services/tailscale.nix
|
|
||||||
./../../services/vaultwarden.nix
|
./../../services/vaultwarden.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
@ -70,6 +69,8 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
tailscale.enable = true;
|
||||||
|
|
||||||
# Do not "enable" database services, but include the package configuration
|
# Do not "enable" database services, but include the package configuration
|
||||||
# so that borgmatic does not freak out about unset variables
|
# so that borgmatic does not freak out about unset variables
|
||||||
postgresql.package = pkgs.postgresql_17;
|
postgresql.package = pkgs.postgresql_17;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue