Compare commits
3 commits
913490431f
...
8f21db84a0
Author | SHA1 | Date | |
---|---|---|---|
8f21db84a0 | |||
eb897c35b2 | |||
a241a563fe |
3 changed files with 6 additions and 3 deletions
|
@ -11,7 +11,10 @@ jobs:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: master
|
ref: master
|
||||||
- run: nix flake update
|
- name: Update dependencies
|
||||||
|
run: |
|
||||||
|
nix flake update
|
||||||
|
./home/programs/nvim/update-plugins.sh
|
||||||
- uses: https://github.com/stefanzweifel/git-auto-commit-action@v5
|
- uses: https://github.com/stefanzweifel/git-auto-commit-action@v5
|
||||||
with:
|
with:
|
||||||
commit_message: "[automation] Update flake"
|
commit_message: "[automation] Update flake"
|
||||||
|
|
|
@ -6,7 +6,7 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
virtualisation.oci-containers.containers.weewx = {
|
virtualisation.oci-containers.containers.weewx = {
|
||||||
image = "ghcr.io/nifoc/weewx-docker:master";
|
image = "git.kempkens.io/daniel/weewx-docker:latest";
|
||||||
ports = [ "127.0.0.1:8000:8000" ];
|
ports = [ "127.0.0.1:8000:8000" ];
|
||||||
environment = {
|
environment = {
|
||||||
"TZ" = "Europe/Berlin";
|
"TZ" = "Europe/Berlin";
|
||||||
|
|
|
@ -173,7 +173,7 @@ in
|
||||||
];
|
];
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
container.options = "-e NIX_BUILD_SHELL=/bin/bash -e PAGER=cat -e PATH=/bin -e SSL_CERT_FILE=/etc/ssl/certs/ca-bundle.crt --device /dev/kvm -v /nix:/nix -v ${storeDeps}/bin:/bin -v ${storeDeps}/etc/ssl:/etc/ssl --user nix-ci-user --device=/dev/kvm";
|
container.options = "-e NIX_BUILD_SHELL=/bin/bash -e PAGER=cat -e PATH=/bin -e SSL_CERT_FILE=/etc/ssl/certs/ca-bundle.crt --device /dev/kvm -v /nix:/nix -v ${storeDeps}/bin:/bin -v ${storeDeps}/etc/ssl:/etc/ssl --user nix-ci-user";
|
||||||
container.valid_volumes = [
|
container.valid_volumes = [
|
||||||
"/nix"
|
"/nix"
|
||||||
"${storeDeps}/bin"
|
"${storeDeps}/bin"
|
||||||
|
|
Loading…
Reference in a new issue