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:
|
||||
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: |
|
||||
|
|
|
@ -2,7 +2,7 @@ _: {
|
|||
imports = [
|
||||
./apps
|
||||
./btrfs.nix
|
||||
./podman.nix
|
||||
./docker.nix
|
||||
./ssh.nix
|
||||
../../shared/caddy.nix
|
||||
];
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
_: {
|
||||
virtualisation.podman = {
|
||||
virtualisation.docker = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
|
@ -11,9 +11,11 @@ _: {
|
|||
enable = true;
|
||||
matchConfig = {
|
||||
Type = "ether";
|
||||
Name = "e*";
|
||||
};
|
||||
networkConfig = {
|
||||
DHCP = "yes";
|
||||
IPv4Forwarding = "yes";
|
||||
};
|
||||
dhcpV4Config = {
|
||||
UseDomains = true;
|
||||
|
|
|
@ -2,7 +2,7 @@ _: {
|
|||
imports = [
|
||||
./apps
|
||||
./btrfs.nix
|
||||
./podman.nix
|
||||
./docker.nix
|
||||
./ssh.nix
|
||||
../../shared/caddy.nix
|
||||
];
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
_: {
|
||||
virtualisation.podman = {
|
||||
virtualisation.docker = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue