cleanup repository #34

Merged
aaron merged 9 commits from feature/repo_cleanup into main 2026-03-21 18:08:19 +01:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit 17158618ee - Show all commits

View File

@@ -1,6 +1,9 @@
{ config, lib, pkgs, ...}:
{
# add docker group to user
users.users.aaron.extraGroups = [ "docker" ];
virtualisation.docker = {
enable = true;
# Customize Docker daemon settings

View File

@@ -5,7 +5,7 @@
users.users.aaron = {
isNormalUser = true;
group = "users";
extraGroups = [ "wheel" "networkmanager" "docker" ];
extraGroups = [ "wheel" "networkmanager" ];
shell = pkgs.zsh;
};