This commit is contained in:
2024-09-12 18:44:32 +02:00
19 changed files with 147 additions and 26 deletions

View File

@@ -8,4 +8,9 @@
btop
git
];
environment.pathsToLink = [ "/share/zsh" ];
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
}

View File

@@ -1,7 +1,13 @@
{ ... }:
{
virtualisation.docker.enable = true;
virtualisation.docker = {
enable = true;
rootless = {
enable = true;
setSocketVariable = true;
};
};
users.users.xeovalyte.extraGroups = [ "docker" ];
}