Compare commits

...

3 commits

Author SHA1 Message Date
2a14c45de3
flake: fix actions 🤷 2024-10-30 14:49:52 +05:30
25bf8f2aa8
all: fix networking for docker 2024-10-30 14:49:14 +05:30
e00dc4e538
wynne, rico2: replace podman with docker 2024-10-30 14:48:57 +05:30
6 changed files with 9 additions and 6 deletions

View file

@ -9,15 +9,16 @@ jobs:
update-inputs: update-inputs:
runs-on: ubuntu runs-on: ubuntu
container: container:
image: node:20-bookworm image: ghcr.io/catthehacker/ubuntu:act-22.04
name: Update Inputs name: Update Inputs
steps: steps:
- uses: https://github.com/actions/checkout@v3 - uses: https://github.com/actions/checkout@v3
with: with:
token: ${{ github.token }} token: ${{ github.token }}
ref: ${{ github.head_ref }} ref: ${{ github.head_ref }}
- uses: https://github.com/cachix/install-nix-action@v20 - uses: https://github.com/cachix/install-nix-action@v27
with: with:
nix_path: nixpkgs=channel:nixos-unstable
github_access_token: ${{ github.token }} github_access_token: ${{ github.token }}
- name: Update inputs - name: Update inputs
run: | run: |

View file

@ -2,7 +2,7 @@ _: {
imports = [ imports = [
./apps ./apps
./btrfs.nix ./btrfs.nix
./podman.nix ./docker.nix
./ssh.nix ./ssh.nix
../../shared/caddy.nix ../../shared/caddy.nix
]; ];

View file

@ -1,5 +1,5 @@
_: { _: {
virtualisation.podman = { virtualisation.docker = {
enable = true; enable = true;
}; };
} }

View file

@ -11,9 +11,11 @@ _: {
enable = true; enable = true;
matchConfig = { matchConfig = {
Type = "ether"; Type = "ether";
Name = "e*";
}; };
networkConfig = { networkConfig = {
DHCP = "yes"; DHCP = "yes";
IPv4Forwarding = "yes";
}; };
dhcpV4Config = { dhcpV4Config = {
UseDomains = true; UseDomains = true;

View file

@ -2,7 +2,7 @@ _: {
imports = [ imports = [
./apps ./apps
./btrfs.nix ./btrfs.nix
./podman.nix ./docker.nix
./ssh.nix ./ssh.nix
../../shared/caddy.nix ../../shared/caddy.nix
]; ];

View file

@ -1,5 +1,5 @@
_: { _: {
virtualisation.podman = { virtualisation.docker = {
enable = true; enable = true;
}; };
} }