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 appindicator
gsconnect gsconnect
battery-health-charging battery-health-charging
quick-settings-tweaker
]); ]);
dconf.settings = { dconf.settings = {

View file

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

View file

@ -36,6 +36,7 @@ in
zsh = { zsh = {
initExtra = '' initExtra = ''
eval "$(direnv hook zsh)"; eval "$(direnv hook zsh)";
export PATH=$PATH:/home/vinzenz/.cargo/bin
''; '';
shellAliases = { shellAliases = {
@ -87,16 +88,17 @@ in
bbenoist.nix bbenoist.nix
ms-python.python ms-python.python
kamadorueda.alejandra kamadorueda.alejandra
#samuelcolvin.jinjahtml
editorconfig.editorconfig editorconfig.editorconfig
#KnisterPeter.vscode-github
yzhang.markdown-all-in-one yzhang.markdown-all-in-one
redhat.vscode-yaml redhat.vscode-yaml
pkief.material-icon-theme pkief.material-icon-theme
mhutchie.git-graph mhutchie.git-graph
rust-lang.rust-analyzer rust-lang.rust-analyzer
bungcip.better-toml tamasfe.even-better-toml
llvm-vs-code-extensions.vscode-clangd llvm-vs-code-extensions.vscode-clangd
mkhl.direnv
vadimcn.vscode-lldb
ms-dotnettools.csharp
]; ];
userSettings = { userSettings = {
"git.autofetch" = true; "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 = { users.users.vinzenz = {
isNormalUser = true; isNormalUser = true;
name = "vinzenz"; name = "vinzenz";
description = "Vinzenz Schroeter"; description = "Vinzenz";
home = "/home/vinzenz"; home = "/home/vinzenz";
extraGroups = ["networkmanager" "wheel" "games" "dialout" "podman"]; extraGroups = ["networkmanager" "wheel" "games" "dialout" "podman" "nginx"];
shell = pkgs.zsh; shell = pkgs.zsh;
autoSubUidGidRange = true;
}; };
}; };
} }