Mise à jour et ajout de proton-ge & steam

This commit is contained in:
2026-08-10 00:16:26 +02:00
parent b985fb589c
commit cd3a057d2a
12 changed files with 168 additions and 56 deletions
@@ -12,12 +12,16 @@ let
in
{
options.os.virtualisation.podman = {
enable = mkEnableOption "System docker service";
gtk = mkEnableOption "Podman app install";
enable = mkEnableOption "System podman service";
};
config = mkIf cfg.enable {
virtualisation = {
containers.enable = true;
containers = {
enable = true;
registries.search = [ "docker.io" ];
};
podman = {
enable = true;
dockerCompat = true;
@@ -27,9 +31,7 @@ in
};
environment = {
systemPackages = with pkgs; [
podman-compose
];
systemPackages = with pkgs; [ podman-compose ] ++ lib.optionals cfg.gtk [ pods ];
};
users.groups.podman.members = users;