Switched to docker for virtualization, added itch games launcher

This commit is contained in:
2025-11-14 15:17:27 -08:00
parent 3392366413
commit 05b706e37f
3 changed files with 3 additions and 9 deletions

View File

@@ -27,6 +27,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
bs-manager bs-manager
heroic heroic
itch
monado monado
]; ];
} }

View File

@@ -1,18 +1,10 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
virtualisation.docker.enable = true;
virtualisation.containers.policy = { virtualisation.containers.policy = {
default = [ { type = "insecureAcceptAnything"; } ]; default = [ { type = "insecureAcceptAnything"; } ];
}; };
virtualisation.podman = {
enable = true;
dockerCompat = true;
dockerSocket.enable = true;
};
environment.systemPackages = with pkgs; [
distrobox
];
} }

View File

@@ -15,6 +15,7 @@ in
extraGroups = [ extraGroups = [
"adbusers" "adbusers"
"dialout" "dialout"
"docker"
"input" "input"
"networkmanager" "networkmanager"
"plugdev" "plugdev"