Compare commits
3 commits
fe8ef4b70f
...
2a14c45de3
Author | SHA1 | Date | |
---|---|---|---|
2a14c45de3 | |||
25bf8f2aa8 | |||
e00dc4e538 |
6 changed files with 9 additions and 6 deletions
|
@ -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: |
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
_: {
|
_: {
|
||||||
virtualisation.podman = {
|
virtualisation.docker = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
|
@ -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;
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
_: {
|
_: {
|
||||||
virtualisation.podman = {
|
virtualisation.docker = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
Loading…
Reference in a new issue