prod: Fix vim configuration syntax (different between staging and prod due to NixOS version difference)

This commit is contained in:
Baptiste Jonglez 2025-03-26 00:17:08 +01:00
parent fc88a063b1
commit fd6275f5bc
3 changed files with 7 additions and 5 deletions

View file

@ -6,6 +6,8 @@
# The IP range to use for the Wireguard overlay of this cluster
deuxfleurs.clusterPrefix = "10.83.0.0/16";
programs.vim.defaultEditor = true;
deuxfleurs.clusterNodes = {
"df-ykl" = {
siteName = "bespin";

View file

@ -36,6 +36,11 @@
deuxfleurs.wgautomeshPort = 1667;
deuxfleurs.services.wgautomesh.logLevel = "debug";
programs.vim = {
enable = true;
defaultEditor = true;
};
# Bootstrap IPs for Consul cluster,
# these are IPs on the Wireguard overlay
services.consul.extraConfig.retry_join = [

View file

@ -68,11 +68,6 @@ SystemMaxUse=1G
# Enable support for all terminal emulators such as urxvt
environment.enableAllTerminfo = true;
programs.vim = {
enable = true;
defaultEditor = true;
};
# Enable network time
services.ntp.enable = false;
services.timesyncd.enable = true;