mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
fix user without home-manager -_-
This commit is contained in:
parent
db31ee7ba1
commit
821d057aca
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
users = {
|
users = {
|
||||||
ronja = lib.mkIf (builtins.elem "ronja" config.my.enabledUsers) (import ./ronja-home.nix);
|
ronja = lib.mkIf (builtins.elem "ronja" config.my.enabledUsers) (import ./ronja-home.nix);
|
||||||
vinzenz = lib.mkIf (builtins.elem "ronja" config.my.enabledUsers) (import ./vinzenz-home.nix);
|
vinzenz = lib.mkIf (builtins.elem "vinzenz" config.my.enabledUsers) (import ./vinzenz-home.nix);
|
||||||
};
|
};
|
||||||
|
|
||||||
sharedModules = [
|
sharedModules = [
|
||||||
|
|
|
@ -89,11 +89,13 @@
|
||||||
bbenoist.nix
|
bbenoist.nix
|
||||||
ms-python.python
|
ms-python.python
|
||||||
kamadorueda.alejandra
|
kamadorueda.alejandra
|
||||||
samuelcolvin.jinjahtml
|
#samuelcolvin.jinjahtml
|
||||||
EditorConfig.EditorConfig
|
#EditorConfig.EditorConfig
|
||||||
KnisterPeter.vscode-github
|
#KnisterPeter.vscode-github
|
||||||
yzhang.markdown-all-in-one
|
yzhang.markdown-all-in-one
|
||||||
redhat.vscode-yaml
|
redhat.vscode-yaml
|
||||||
|
#PKief.material-icon-theme
|
||||||
|
mhutchie.git-graph
|
||||||
];
|
];
|
||||||
userSettings = {
|
userSettings = {
|
||||||
"git.autofetch" = true;
|
"git.autofetch" = true;
|
||||||
|
@ -105,12 +107,13 @@
|
||||||
"editor.minimap.autohide" = true;
|
"editor.minimap.autohide" = true;
|
||||||
"diffEditor.diffAlgorithm" = "advanced";
|
"diffEditor.diffAlgorithm" = "advanced";
|
||||||
"explorer.excludeGitIgnore" = true;
|
"explorer.excludeGitIgnore" = true;
|
||||||
"workbench.startupEditor" = "readme";
|
|
||||||
"markdown.extension.tableFormatter.normalizeIndentation" = true;
|
"markdown.extension.tableFormatter.normalizeIndentation" = true;
|
||||||
"markdown.extension.toc.orderedList" = false;
|
"markdown.extension.toc.orderedList" = false;
|
||||||
"telemetry.telemetryLevel" = "off";
|
"telemetry.telemetryLevel" = "off";
|
||||||
"redhat.telemetry.enabled" = false;
|
"redhat.telemetry.enabled" = false;
|
||||||
|
"workbench.startupEditor" = "readme";
|
||||||
"workbench.enableExperiments" = false;
|
"workbench.enableExperiments" = false;
|
||||||
|
"workbench.iconTheme" = "material-icon-theme";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue