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

@ -27,6 +27,7 @@ in {
appindicator
gsconnect
battery-health-charging
quick-settings-tweaker
]);
dconf.settings = {

View file

@ -11,7 +11,7 @@ in {
users.users.ronja = {
isNormalUser = true;
name = "ronja";
description = "Ronja Spiegelberg";
description = "Ronja";
home = "/home/ronja";
extraGroups = ["networkmanager" "wheel" "games" "podman"];
shell = pkgs.zsh;

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"}]
}
}
}
'';
};
}
]

View file

@ -10,10 +10,11 @@ in {
users.users.vinzenz = {
isNormalUser = true;
name = "vinzenz";
description = "Vinzenz Schroeter";
description = "Vinzenz";
home = "/home/vinzenz";
extraGroups = ["networkmanager" "wheel" "games" "dialout" "podman"];
extraGroups = ["networkmanager" "wheel" "games" "dialout" "podman" "nginx"];
shell = pkgs.zsh;
autoSubUidGidRange = true;
};
};
}