mv home homeConfigurations

This commit is contained in:
Vinzenz Schroeter 2025-09-15 18:07:38 +02:00
parent f89c75aad2
commit 1bebb5d096
17 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ ... }:
{
config.editorconfig = {
enable = true;
settings = {
"*" = {
charset = "utf-8";
end_of_line = "lf";
trim_trailing_whitespace = true;
insert_final_newline = true;
max_line_width = 120;
indent_style = "space";
indent_size = 4;
};
"*.nix" = {
indent_size = 2;
};
};
};
}