This commit is contained in:
mewoocat 2026-01-13 00:42:11 -06:00
commit 5dff56daab
2 changed files with 4 additions and 4 deletions

View file

@ -51,9 +51,9 @@ isMaximal: {
# Languages that will be supported in default and maximal configurations. # Languages that will be supported in default and maximal configurations.
nix = { nix = {
enable = true; enable = true;
tabstop = 20; tabstop = 8;
softtabstop = 20; softtabstop = 8;
shiftwidth = 20; shiftwidth = 8;
}; };
markdown.enable = true; markdown.enable = true;

View file

@ -110,7 +110,7 @@ in {
tabstop = mkOption { tabstop = mkOption {
description = "Sets the tabstop size in spaces for .nix files"; description = "Sets the tabstop size in spaces for .nix files";
type = nullOr null; type = nullOr int;
default = null; default = null;
}; };