Home : Add editorconfig.
This commit is contained in:
parent
23016442b0
commit
8bb50895e9
|
@ -9,13 +9,14 @@ in {
|
||||||
home.stateVersion = inputs.self.nixosModules.const.stateVersion;
|
home.stateVersion = inputs.self.nixosModules.const.stateVersion;
|
||||||
|
|
||||||
home.file = {
|
home.file = {
|
||||||
"app/bin".source = ./module/bin;
|
|
||||||
".parallel/will-cite".text = "";
|
|
||||||
".config/btop".source = ./module/top/btop;
|
".config/btop".source = ./module/top/btop;
|
||||||
".config/htop".source = ./module/top/htop;
|
|
||||||
".config/gtk-2.0".source = ./module/gtk/2;
|
".config/gtk-2.0".source = ./module/gtk/2;
|
||||||
".config/gtk-3.0".source = ./module/gtk/3;
|
".config/gtk-3.0".source = ./module/gtk/3;
|
||||||
".config/gtk-4.0".source = ./module/gtk/4;
|
".config/gtk-4.0".source = ./module/gtk/4;
|
||||||
|
".config/htop".source = ./module/top/htop;
|
||||||
|
".editorconfig".source = ./module/Editorconfig;
|
||||||
|
".parallel/will-cite".text = "";
|
||||||
|
"app/bin".source = ./module/bin;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Directories.
|
# Directories.
|
||||||
|
|
9
user/home/module/Editorconfig
Normal file
9
user/home/module/Editorconfig
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
end_of_line = lf
|
||||||
|
charset = utf-8
|
||||||
|
indent_style = tab
|
||||||
|
indent_size = 2
|
||||||
|
insert_final_newline = true
|
||||||
|
trim_trailing_whitespace = true
|
Loading…
Reference in a new issue