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

View file

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

View file

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

View file

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

View file

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

View file

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