From 5f54779a06930a8b0af04aea5491be713570ee41 Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Sun, 1 Oct 2023 23:39:32 +0300 Subject: [PATCH] distrobox conf --- machines/AMD-Workstation/default.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/machines/AMD-Workstation/default.nix b/machines/AMD-Workstation/default.nix index 665b8c5..cbb2bdd 100644 --- a/machines/AMD-Workstation/default.nix +++ b/machines/AMD-Workstation/default.nix @@ -107,7 +107,7 @@ services.ratbagd.enable = true; - networking.firewall.allowedTCPPorts = [ 8000 5900 ]; + networking.firewall.allowedTCPPorts = [ 8000 5900 52736 ]; home-manager.users.${config.mainuser} = { home.packages = [ @@ -122,11 +122,20 @@ pkgs.devenv pkgs.radeontop pkgs.wayvnc + pkgs.distrobox ]; + xdg.configFile."distrobox/distrobox.conf".text = '' + container_always_pull="1" + container_manager="podman" + ''; home.stateVersion = "23.05"; }; - persist.state.homeDirectories = [ ".local/share/winbox" ".local/share/PrismLauncher" ]; + persist.state.homeDirectories = [ + ".local/share/winbox" + ".local/share/PrismLauncher" + ".local/share/distrobox" + ]; system.stateVersion = "23.05"; }