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