Socks
This commit is contained in:
parent
d87fe696e3
commit
1b755432cc
2 changed files with 15 additions and 0 deletions
|
@ -618,7 +618,9 @@
|
||||||
podman = {
|
podman = {
|
||||||
enable = true;
|
enable = true;
|
||||||
dockerCompat = true;
|
dockerCompat = true;
|
||||||
|
dockerSocket.enable = true;
|
||||||
defaultNetwork.settings.dns_enabled = true;
|
defaultNetwork.settings.dns_enabled = true;
|
||||||
|
# networkSocket.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
oci-containers = {
|
oci-containers = {
|
||||||
|
|
|
@ -751,6 +751,11 @@ sudo nix run nixpkgs#ipmitool -- raw 0x30 0x30 0x02 0xff 0x00
|
||||||
enable = true;
|
enable = true;
|
||||||
name = "beefcake";
|
name = "beefcake";
|
||||||
url = "https://git.lyte.dev";
|
url = "https://git.lyte.dev";
|
||||||
|
settings = {
|
||||||
|
container = {
|
||||||
|
network = "podman";
|
||||||
|
};
|
||||||
|
};
|
||||||
labels = [
|
labels = [
|
||||||
# type ":host" does not depend on docker/podman/lxc
|
# type ":host" does not depend on docker/podman/lxc
|
||||||
"podman"
|
"podman"
|
||||||
|
@ -1007,6 +1012,14 @@ sudo nix run nixpkgs#ipmitool -- raw 0x30 0x30 0x02 0xff 0x00
|
||||||
# should I be using btrfs subvolumes? can I capture file ownership, perimssions, and ACLs?
|
# should I be using btrfs subvolumes? can I capture file ownership, perimssions, and ACLs?
|
||||||
|
|
||||||
virtualisation.oci-containers.backend = "podman";
|
virtualisation.oci-containers.backend = "podman";
|
||||||
|
virtualisation.podman = {
|
||||||
|
# autoPrune.enable = true;
|
||||||
|
defaultNetwork.settings = {
|
||||||
|
# this lets any podman container access host services
|
||||||
|
# primarily did this so runner actions running podman containers can hit git.lyte.dev
|
||||||
|
driver = "host";
|
||||||
|
};
|
||||||
|
};
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
linuxquota
|
linuxquota
|
||||||
htop
|
htop
|
||||||
|
|
Loading…
Reference in a new issue