Bunch of config changes

This commit is contained in:
2024-09-12 18:39:59 +02:00
parent 59e360139f
commit 5655c8a056
9 changed files with 51 additions and 6 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" ];
}