feat: installed docker on horizon

This commit is contained in:
Leyla Becker 2025-11-28 15:45:38 -06:00
parent dce767403a
commit c01ca13fcb
2 changed files with 3 additions and 1 deletions

View file

@ -85,6 +85,8 @@
};
};
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [
cachefilesd
webtoon-dl

View file

@ -113,7 +113,7 @@ in {
description = "Leyla";
extraGroups =
(lib.lists.optionals host.users.leyla.isNormalUser ["networkmanager"])
++ (lib.lists.optionals host.users.leyla.isPrincipleUser ["wheel" "dialout"])
++ (lib.lists.optionals host.users.leyla.isPrincipleUser ["wheel" "dialout" "docker"])
++ (lib.lists.optionals host.users.leyla.isDesktopUser ["adbusers"]);
hashedPasswordFile = config.sops.secrets."passwords/leyla".path;
isNormalUser = host.users.leyla.isNormalUser;