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
|
||||
gsconnect
|
||||
battery-health-charging
|
||||
quick-settings-tweaker
|
||||
]);
|
||||
|
||||
dconf.settings = {
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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"}]
|
||||
}
|
||||
}
|
||||
}
|
||||
'';
|
||||
};
|
||||
}
|
||||
]
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue