Docker+Tux: Add docker support

This commit is contained in:
2026-04-10 14:47:38 +02:00
parent fc58b0ad29
commit a802c85678
4 changed files with 22 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
{ inputs, ... }: {
flake.modules.nixos.tux = {
imports = with inputs.self.modules.nixos;
with inputs.self.factory; [
development-tools
docker
];
};
}

View File

@@ -9,7 +9,6 @@
(autologin "weckyy702")
development-tools
home-vpn
opentablet

View File

@@ -0,0 +1,5 @@
{
flake.modules.nixos.tux = {
users.users.weckyy702.extraGroups = [ "docker" ];
};
}

View File

@@ -0,0 +1,8 @@
{
flake.modules.nixos.docker = {
virtualisation.docker = {
enable = true;
autoPrune.enable = true;
};
};
}