update home config

This commit is contained in:
Vinzenz Schroeter 2024-05-25 11:24:00 +02:00
parent 18ecc85b77
commit c4a99e93ed
4 changed files with 30 additions and 6 deletions

View file

@ -36,6 +36,7 @@ in
zsh = {
initExtra = ''
eval "$(direnv hook zsh)";
export PATH=$PATH:/home/vinzenz/.cargo/bin
'';
shellAliases = {
@ -87,16 +88,17 @@ in
bbenoist.nix
ms-python.python
kamadorueda.alejandra
#samuelcolvin.jinjahtml
editorconfig.editorconfig
#KnisterPeter.vscode-github
yzhang.markdown-all-in-one
redhat.vscode-yaml
pkief.material-icon-theme
mhutchie.git-graph
rust-lang.rust-analyzer
bungcip.better-toml
tamasfe.even-better-toml
llvm-vs-code-extensions.vscode-clangd
mkhl.direnv
vadimcn.vscode-lldb
ms-dotnettools.csharp
];
userSettings = {
"git.autofetch" = true;
@ -219,5 +221,25 @@ in
};
};
};
home.file."policy.json" = {
target = ".config/containers/policy.json";
text = ''
{
"default": [
{
"type": "insecureAcceptAnything"
}
],
"transports":
{
"docker-daemon":
{
"": [{"type":"insecureAcceptAnything"}]
}
}
}
'';
};
}
]