Added Jack user to docker user group and added docker to t480 config

This commit is contained in:
Jack Mechem 2026-03-04 13:28:48 -08:00
parent b45060f6be
commit 2591fe68a8
2 changed files with 77 additions and 74 deletions

View file

@ -2,18 +2,19 @@
{
users.users.jack = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = [
"wheel"
"networkmanager"
]; # Enable sudo for the user.
packages = with pkgs; [
zed-editor
cargo
clang
clang-tools
];
};
users.users.jack = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = [
"wheel"
"networkmanager"
"docker"
]; # Enable sudo for the user.
packages = with pkgs; [
zed-editor
cargo
clang
clang-tools
];
};
}