From b70fc389df22e22b41d12ba8f453898129eca8c9 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Sat, 16 Aug 2025 21:41:21 -0400 Subject: [PATCH 1/4] add new exp features, add draft apps --- modules/nix.nix | 3 +++ users/alice/home/zsh.nix | 2 ++ 2 files changed, 5 insertions(+) diff --git a/modules/nix.nix b/modules/nix.nix index aaee247..5800a05 100644 --- a/modules/nix.nix +++ b/modules/nix.nix @@ -7,6 +7,9 @@ experimental-features = [ "nix-command" "flakes" + "blake3-hashes" + "git-hashing" + "verified-fetches" ]; keep-outputs = true; builders-use-substitutes = true; diff --git a/users/alice/home/zsh.nix b/users/alice/home/zsh.nix index 14390a2..c3f9788 100644 --- a/users/alice/home/zsh.nix +++ b/users/alice/home/zsh.nix @@ -118,6 +118,8 @@ "octave" = "prime-run octave --gui"; "pc-firefox" = "proxychains firefox -P qbit -no-remote -P 127.0.0.1:9050"; "hx" = "helix"; + "dungeondraft-arch" = "/opt/Dungeondraft/Dungeondraft.x86_64"; + "wonderdraft-arch" = "/opt/wonderdraft/Wonderdraft.x86_64"; }; }; } From c2538f591f1ab4dcaebd6854ee59157b11af48d0 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Sun, 24 Aug 2025 21:07:45 -0400 Subject: [PATCH 2/4] push act-runner to nightly for node24 issue --- systems/palatine-hill/docker/act-runner.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/systems/palatine-hill/docker/act-runner.nix b/systems/palatine-hill/docker/act-runner.nix index 9c57225..7f2e2d4 100644 --- a/systems/palatine-hill/docker/act-runner.nix +++ b/systems/palatine-hill/docker/act-runner.nix @@ -11,7 +11,7 @@ in { virtualisation.oci-containers.containers = { act-stable-latest-main = { - image = "gitea/act_runner:latest"; + image = "gitea/act_runner:nightly"; pull = "always"; extraOptions = [ "--stop-signal=SIGINT" @@ -35,7 +35,7 @@ in }; act-stable-latest-1 = { - image = "gitea/act_runner:latest"; + image = "gitea/act_runner:nightly"; pull = "always"; extraOptions = [ "--stop-signal=SIGINT" @@ -58,7 +58,7 @@ in }; act-stable-latest-2 = { - image = "gitea/act_runner:latest"; + image = "gitea/act_runner:nightly"; pull = "always"; extraOptions = [ "--stop-signal=SIGINT" From ce8eef53521edbf72936679ee22b3f5611debe57 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Wed, 27 Aug 2025 01:13:05 -0400 Subject: [PATCH 3/4] add caching ip --- systems/palatine-hill/docker/act_config.yaml | 6 +++--- users/alice/non-server.nix | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/systems/palatine-hill/docker/act_config.yaml b/systems/palatine-hill/docker/act_config.yaml index 37c4609..bd37cfe 100644 --- a/systems/palatine-hill/docker/act_config.yaml +++ b/systems/palatine-hill/docker/act_config.yaml @@ -40,17 +40,17 @@ runner: - "ubuntu-20.04:docker://gitea/runner-images:ubuntu-20.04" #cache: # Enable cache server to use actions/cache. - #enabled: true + enabled: true # The directory to store the cache data. # If it's empty, the cache data will be stored in $HOME/.cache/actcache. #dir: "" # The host of the cache server. # It's not for the address to listen, but the address to connect from job containers. # So 0.0.0.0 is a bad choice, leave it empty to detect automatically. - #host: "" + host: "192.168.76.2" # The port of the cache server. # 0 means to use a random available port. - #port: 0 + port: 8088 # The external cache server URL. Valid only when enable is true. # If it's specified, act_runner will use this URL as the ACTIONS_CACHE_URL rather than start a server by itself. # The URL should generally end with "/". diff --git a/users/alice/non-server.nix b/users/alice/non-server.nix index 262a086..11aae2f 100644 --- a/users/alice/non-server.nix +++ b/users/alice/non-server.nix @@ -105,5 +105,8 @@ obsidian libreoffice-qt-fresh wlr-randr + + # media tools + deepin.deepin-music ]; } From 97529d89e1bfd1d31f8c63bae3db5981f3723cf1 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Wed, 27 Aug 2025 01:31:17 -0400 Subject: [PATCH 4/4] fix cache --- systems/palatine-hill/docker/act_config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/palatine-hill/docker/act_config.yaml b/systems/palatine-hill/docker/act_config.yaml index bd37cfe..730794a 100644 --- a/systems/palatine-hill/docker/act_config.yaml +++ b/systems/palatine-hill/docker/act_config.yaml @@ -38,7 +38,7 @@ runner: - "ubuntu-latest:docker://gitea/runner-images:ubuntu-latest" - "ubuntu-22.04:docker://gitea/runner-images:ubuntu-22.04" - "ubuntu-20.04:docker://gitea/runner-images:ubuntu-20.04" - #cache: +cache: # Enable cache server to use actions/cache. enabled: true # The directory to store the cache data.