mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
update home config
This commit is contained in:
parent
18ecc85b77
commit
c4a99e93ed
|
@ -27,6 +27,7 @@ in {
|
||||||
appindicator
|
appindicator
|
||||||
gsconnect
|
gsconnect
|
||||||
battery-health-charging
|
battery-health-charging
|
||||||
|
quick-settings-tweaker
|
||||||
]);
|
]);
|
||||||
|
|
||||||
dconf.settings = {
|
dconf.settings = {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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"}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue