From 3c9a69063fdfa1f41b04a9bbb71be715757e3e2b Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Tue, 26 Mar 2024 14:04:56 +0100 Subject: [PATCH 01/20] [CI] Temporarily disable `update-flake-lock` job --- .forgejo/workflows/build.yaml | 22 ++++---- .forgejo/workflows/update-flake-lock.yaml | 68 +++++++++++------------ 2 files changed, 45 insertions(+), 45 deletions(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 925cf06..4e6cdb6 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -1,11 +1,11 @@ -on: - push: - branches: ["*"] -jobs: - test: - runs-on: nix - steps: - - uses: actions/checkout@v4 - name: Checkout repository - - name: Build with nix - run: nix-fast-build --no-nom --systems "x86_64-linux aarch64-linux" +# on: +# push: +# branches: ["*"] +# jobs: +# test: +# runs-on: nix +# steps: +# - uses: actions/checkout@v4 +# name: Checkout repository +# - name: Build with nix +# run: nix-fast-build --no-nom --systems "x86_64-linux aarch64-linux" diff --git a/.forgejo/workflows/update-flake-lock.yaml b/.forgejo/workflows/update-flake-lock.yaml index eadba29..fe4910a 100644 --- a/.forgejo/workflows/update-flake-lock.yaml +++ b/.forgejo/workflows/update-flake-lock.yaml @@ -1,35 +1,35 @@ -name: update-flake-lock -on: - schedule: - - cron: '0 15 * * *' # daily at 15:00 +# name: update-flake-lock +# on: +# schedule: +# - cron: '0 15 * * *' # daily at 15:00 -jobs: - lockfile: - runs-on: nix - steps: - - uses: actions/checkout@v4 - name: Checkout repository - with: - token: ${{secrets.SEVENOFNINE_TOKEN}} - - name: Create new branch from the checked out one - run: git switch -c update-flake-lock - - name: Configure git as `Seven of Nix` - run: | - git config --global user.email "sevenofnine@stronzi.org" - git config --global user.name "Seven of Nine" - - name: Update flake's lockfile and create commit - run: nix flake update --commit-lock-file - - name: Push commit to the `update-flake-lock` remote branch - run: git push origin --force update-flake-lock # sevenOfNix needs write access to the repository - - name: Login as `Seven of Nix` - run: | - tea logins add --token ${{secrets.SEVENOFNINE_TOKEN}} --url https://git.aciceri.dev - tea logins default git.aciceri.dev - - name: Create the pull request - run: | - tea pulls create \ - --repo "$GITHUB_REPOSITORY" \ - --title "Update flake's lockfile" \ - --description "Check the commit description for inputs deltas" \ - --assignees aciceri \ - || echo "PR already existing" +# jobs: +# lockfile: +# runs-on: nix +# steps: +# - uses: actions/checkout@v4 +# name: Checkout repository +# with: +# token: ${{secrets.SEVENOFNINE_TOKEN}} +# - name: Create new branch from the checked out one +# run: git switch -c update-flake-lock +# - name: Configure git as `Seven of Nix` +# run: | +# git config --global user.email "sevenofnine@stronzi.org" +# git config --global user.name "Seven of Nine" +# - name: Update flake's lockfile and create commit +# run: nix flake update --commit-lock-file +# - name: Push commit to the `update-flake-lock` remote branch +# run: git push origin --force update-flake-lock # sevenOfNix needs write access to the repository +# - name: Login as `Seven of Nix` +# run: | +# tea logins add --token ${{secrets.SEVENOFNINE_TOKEN}} --url https://git.aciceri.dev +# tea logins default git.aciceri.dev +# - name: Create the pull request +# run: | +# tea pulls create \ +# --repo "$GITHUB_REPOSITORY" \ +# --title "Update flake's lockfile" \ +# --description "Check the commit description for inputs deltas" \ +# --assignees aciceri \ +# || echo "PR already existing" From 3e1ee94dc96a08378c42bcd29572f0d64bdc1702 Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Tue, 26 Mar 2024 15:28:34 +0100 Subject: [PATCH 02/20] [CI] Re-enable jobs --- .forgejo/workflows/build.yaml | 22 ++++---- .forgejo/workflows/update-flake-lock.yaml | 67 +++++++++++------------ 2 files changed, 44 insertions(+), 45 deletions(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 4e6cdb6..925cf06 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -1,11 +1,11 @@ -# on: -# push: -# branches: ["*"] -# jobs: -# test: -# runs-on: nix -# steps: -# - uses: actions/checkout@v4 -# name: Checkout repository -# - name: Build with nix -# run: nix-fast-build --no-nom --systems "x86_64-linux aarch64-linux" +on: + push: + branches: ["*"] +jobs: + test: + runs-on: nix + steps: + - uses: actions/checkout@v4 + name: Checkout repository + - name: Build with nix + run: nix-fast-build --no-nom --systems "x86_64-linux aarch64-linux" diff --git a/.forgejo/workflows/update-flake-lock.yaml b/.forgejo/workflows/update-flake-lock.yaml index fe4910a..c19d185 100644 --- a/.forgejo/workflows/update-flake-lock.yaml +++ b/.forgejo/workflows/update-flake-lock.yaml @@ -1,35 +1,34 @@ -# name: update-flake-lock -# on: -# schedule: -# - cron: '0 15 * * *' # daily at 15:00 +name: update-flake-lock +on: + schedule: + - cron: '0 15 * * *' # daily at 15:00 -# jobs: -# lockfile: -# runs-on: nix -# steps: -# - uses: actions/checkout@v4 -# name: Checkout repository -# with: -# token: ${{secrets.SEVENOFNINE_TOKEN}} -# - name: Create new branch from the checked out one -# run: git switch -c update-flake-lock -# - name: Configure git as `Seven of Nix` -# run: | -# git config --global user.email "sevenofnine@stronzi.org" -# git config --global user.name "Seven of Nine" -# - name: Update flake's lockfile and create commit -# run: nix flake update --commit-lock-file -# - name: Push commit to the `update-flake-lock` remote branch -# run: git push origin --force update-flake-lock # sevenOfNix needs write access to the repository -# - name: Login as `Seven of Nix` -# run: | -# tea logins add --token ${{secrets.SEVENOFNINE_TOKEN}} --url https://git.aciceri.dev -# tea logins default git.aciceri.dev -# - name: Create the pull request -# run: | -# tea pulls create \ -# --repo "$GITHUB_REPOSITORY" \ -# --title "Update flake's lockfile" \ -# --description "Check the commit description for inputs deltas" \ -# --assignees aciceri \ -# || echo "PR already existing" +jobs: + lockfile: + runs-on: nix + steps: + - uses: actions/checkout@v4 + name: Checkout repository + with: + token: ${{secrets.SEVENOFNINE_TOKEN}} + - name: Create new branch from the checked out one + run: git switch -c update-flake-lock + - name: Configure git as `Seven of Nix` + run: | + git config --global user.email "sevenofnine@stronzi.org" + git config --global user.name "Seven of Nine" + - name: Update flake's lockfile and create commit + run: nix flake update --commit-lock-file# - name: Push commit to the `update-flake-lock` remote branch + run: git push origin --force update-flake-lock # sevenOfNix needs write access to the repository + - name: Login as `Seven of Nix` + run: | + tea logins add --token ${{secrets.SEVENOFNINE_TOKEN}} --url https://git.aciceri.dev + tea logins default git.aciceri.dev + - name: Create the pull request + run: | + tea pulls create \ + --repo "$GITHUB_REPOSITORY" \ + --title "Update flake's lockfile" \ + --description "Check the commit description for inputs deltas" \ + --assignees aciceri \ + || echo "PR already existing" From fc8c1560e385dce7ad9def83db9e05a502352450 Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Tue, 26 Mar 2024 15:40:28 +0100 Subject: [PATCH 03/20] Jellyfin module --- hosts/sisko/default.nix | 1 + modules/jellyfin/default.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 modules/jellyfin/default.nix diff --git a/hosts/sisko/default.nix b/hosts/sisko/default.nix index 545b115..c4d5702 100644 --- a/hosts/sisko/default.nix +++ b/hosts/sisko/default.nix @@ -26,6 +26,7 @@ "minio" # "matrix" "forgejo" + # "jellyfin" ] ++ [ ./disko.nix diff --git a/modules/jellyfin/default.nix b/modules/jellyfin/default.nix new file mode 100644 index 0000000..1615176 --- /dev/null +++ b/modules/jellyfin/default.nix @@ -0,0 +1,7 @@ +{ + services.jellyfin = { + enable = true; + }; + + users.users.jellyfin.extraGroups = ["transmission"]; +} From fe54c2d5ba78a11584c4a9c2d8d8193f49b3c881 Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Tue, 26 Mar 2024 15:42:36 +0100 Subject: [PATCH 04/20] Change `transmission` speeds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Disk is too slow 😭 --- modules/transmission/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/transmission/default.nix b/modules/transmission/default.nix index 72070ed..83d886b 100644 --- a/modules/transmission/default.nix +++ b/modules/transmission/default.nix @@ -21,8 +21,8 @@ upload-slots-per-torrent = 1000; - alt-speed-up = 300000; # 300MB/s - alt-speed-down = 500000; # 500MB/s + alt-speed-up = 10000; + alt-speed-down = 10000; alt-speed-time-enabled = true; alt-speed-time-begin = 540; # 9AM, minutes after midnight alt-speed-time-end = 1380; # 11PM From 9fb2c6e36586b2d1a1442f9c68ac1e0db4139139 Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Tue, 26 Mar 2024 15:45:07 +0100 Subject: [PATCH 05/20] Jellyfin proxy --- modules/cloudflare-dyndns/default.nix | 1 + modules/rock5b-proxy/default.nix | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/modules/cloudflare-dyndns/default.nix b/modules/cloudflare-dyndns/default.nix index 4b8e74a..a0f8443 100644 --- a/modules/cloudflare-dyndns/default.nix +++ b/modules/cloudflare-dyndns/default.nix @@ -14,6 +14,7 @@ "cache.aciceri.dev" "matrix.aciceri.dev" "syncv3.matrix.aciceri.dev" + "jellyfin.aciceri.dev" ]; apiTokenFile = config.age.secrets.cloudflare-dyndns-api-token.path; }; diff --git a/modules/rock5b-proxy/default.nix b/modules/rock5b-proxy/default.nix index 5ffb526..38416f0 100644 --- a/modules/rock5b-proxy/default.nix +++ b/modules/rock5b-proxy/default.nix @@ -35,6 +35,13 @@ proxyPass = "http://localhost:${builtins.toString config.services.invidious.port}"; }; }; + # "jellyfin.aciceri.dev" = { + # forceSSL = true; + # enableACME = true; + # locations."/" = { + # proxyPass = "http://localhost:8096"; + # }; + # }; # "sevenofnix.aciceri.dev" = { # forceSSL = true; # enableACME = true; From ae7d2a397401874ac4bc0daee18d2b278286c24e Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Tue, 26 Mar 2024 15:45:14 +0100 Subject: [PATCH 06/20] Move `forgejo` state directory to SSD --- modules/forgejo/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/forgejo/default.nix b/modules/forgejo/default.nix index 7c7b13b..8a1f821 100644 --- a/modules/forgejo/default.nix +++ b/modules/forgejo/default.nix @@ -5,7 +5,6 @@ }: { services.forgejo = { enable = true; - stateDir = "/mnt/hd/forgejo"; settings = { DEFAULT = { RUN_MODE = "prod"; # set to prod for better logs (worse performance) From c9ef45c95871f7cc314a267214155a4ec3534b27 Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Tue, 2 Apr 2024 12:42:29 +0200 Subject: [PATCH 07/20] Update `ccrEmacs` input --- flake.lock | 68 +++++++++++++++++++++++++++--------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/flake.lock b/flake.lock index c731bcf..2457923 100644 --- a/flake.lock +++ b/flake.lock @@ -40,11 +40,11 @@ ] }, "locked": { - "lastModified": 1710336635, - "narHash": "sha256-tEc3mD8LNujcm94BigiJZTGulCCGOhpXoNebQGzezLA=", + "lastModified": 1711464622, + "narHash": "sha256-P9joXeVMV4FzNy9Y31bnCgKP7xu1Cw+EV8mghAK8N10=", "ref": "refs/heads/master", - "rev": "845e682dc294373370efd5b6db99c48a65070a89", - "revCount": 165, + "rev": "d3875adaaa70a52c127f2519a2e86eb4dbcf34b0", + "revCount": 167, "type": "git", "url": "https://git.aciceri.dev/aciceri/emacs.git" }, @@ -122,11 +122,11 @@ "nixpkgs-stable": "nixpkgs-stable" }, "locked": { - "lastModified": 1710320774, - "narHash": "sha256-TrLaYznIzUGy4vIRw4hDDlOKuF/vDD1J49cLtkxvgAI=", + "lastModified": 1711443855, + "narHash": "sha256-jPEUYELo7ACEiFU7jKDdQ+yC5OkqG2UcHk1/N+N7f3E=", "owner": "nix-community", "repo": "emacs-overlay", - "rev": "c68aeff603f1b5c4cc7a57b876cf5e7101f2f21c", + "rev": "81d4eb044fac45daf51281a046d413a40f05d103", "type": "github" }, "original": { @@ -170,11 +170,11 @@ "extra-package-combobulate": { "flake": false, "locked": { - "lastModified": 1710175386, - "narHash": "sha256-rww0/6304xZWTFRo1BVcfSDdXOXtlgmfZOxAoOIjYsk=", + "lastModified": 1710138842, + "narHash": "sha256-9Vr5q9z7HmLCxBJW/4/5JAzri/MWB6FNA4BPeV5Ko1s=", "owner": "mickeynp", "repo": "combobulate", - "rev": "ee82c568ad639605518f62f82fae4bcc0dfdbb81", + "rev": "f6e092d94ab184b3445fe3d6c0a501f9d7df764a", "type": "github" }, "original": { @@ -186,11 +186,11 @@ "extra-package-copilot": { "flake": false, "locked": { - "lastModified": 1710320315, - "narHash": "sha256-YY/6vODg2MSPMi+61Ii5aQiDQS5B6YPMP1VP1dDNOLs=", + "lastModified": 1709987182, + "narHash": "sha256-BLIyJ9z4yI2Iv5eqrmULJ5VXoGnlXSVJx+5lVQyIoO8=", "owner": "zerolfx", "repo": "copilot.el", - "rev": "57d5e670786ca8156772c6dcb38e6ff67c5efd62", + "rev": "4e203efaa1f4047c800a026ba496d3bda8b67119", "type": "github" }, "original": { @@ -218,16 +218,16 @@ "extra-package-nix-ts-mode": { "flake": false, "locked": { - "lastModified": 1694965545, - "narHash": "sha256-HijDb+2ojDk1Evv/KEIrZ/xW+QXz6IJoUllniTsE3hs=", - "owner": "aciceri", + "lastModified": 1705596103, + "narHash": "sha256-jEUmhfLE7cFan4/PF4qBiEOLsjM3Q4iSDTlM+0CYwZg=", + "owner": "antifuchs", "repo": "nix-ts-mode", - "rev": "8da9a76cd014d56ee734553a32c9e006e375bce4", + "rev": "0ef4e663add03d026a1804f57ac7d5453a635b15", "type": "github" }, "original": { - "owner": "aciceri", - "ref": "improved", + "owner": "antifuchs", + "ref": "improve-indented-string-indentation", "repo": "nix-ts-mode", "type": "github" } @@ -307,11 +307,11 @@ ] }, "locked": { - "lastModified": 1709336216, - "narHash": "sha256-Dt/wOWeW6Sqm11Yh+2+t0dfEWxoMxGBvv3JpIocFl9E=", + "lastModified": 1701473968, + "narHash": "sha256-YcVE5emp1qQ8ieHUnxt1wCZCC3ZfAS+SRRWZ2TMda7E=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "f7b3c975cf067e56e7cda6cb098ebe3fb4d74ca2", + "rev": "34fed993f1674c8d06d58b37ce1e0fe5eebcb9f5", "type": "github" }, "original": { @@ -552,11 +552,11 @@ "nixpkgs": "nixpkgs_3" }, "locked": { - "lastModified": 1710309369, - "narHash": "sha256-pQo1vDEEyULfvTQeqZixryrDVpGICzGBtj4uIfP4cs0=", + "lastModified": 1708547820, + "narHash": "sha256-xU/KC1PWqq5zL9dQ9wYhcdgxAwdeF/dJCLPH3PNZEBg=", "owner": "hercules-ci", "repo": "hercules-ci-effects", - "rev": "9cc7ed20043adf381f1b8354c54ba667b527d538", + "rev": "0ca27bd58e4d5be3135a4bef66b582e57abe8f4a", "type": "github" }, "original": { @@ -908,11 +908,11 @@ }, "nixpkgs-stable": { "locked": { - "lastModified": 1710162809, - "narHash": "sha256-i2R2bcnQp+85de67yjgZVvJhd6rRnJbSYNpGmB6Leb8=", + "lastModified": 1711124224, + "narHash": "sha256-l0zlN/3CiodvWDtfBOVxeTwYSRz93muVbXWSpaMjXxM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "ddcd7598b2184008c97e6c9c6a21c5f37590b8d2", + "rev": "56528ee42526794d413d6f244648aaee4a7b56c0", "type": "github" }, "original": { @@ -972,11 +972,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1710272261, - "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", + "lastModified": 1711163522, + "narHash": "sha256-YN/Ciidm+A0fmJPWlHBGvVkcarYWSC+s3NTPk/P+q3c=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", + "rev": "44d0940ea560dee511026a53f0e2e2cde489b4d4", "type": "github" }, "original": { @@ -988,11 +988,11 @@ }, "nixpkgs_3": { "locked": { - "lastModified": 1709961763, - "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "lastModified": 1703637592, + "narHash": "sha256-8MXjxU0RfFfzl57Zy3OfXCITS0qWDNLzlBAdwxGZwfY=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", + "rev": "cfc3698c31b1fb9cdcf10f36c9643460264d0ca8", "type": "github" }, "original": { From 458c00e4997d379092e11c33de83b1e7c86e65f0 Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Tue, 2 Apr 2024 12:42:53 +0200 Subject: [PATCH 08/20] `btop` settings --- hmModules/btop/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/hmModules/btop/default.nix b/hmModules/btop/default.nix index dda9306..370fbd2 100644 --- a/hmModules/btop/default.nix +++ b/hmModules/btop/default.nix @@ -1,6 +1,10 @@ -{ +{config, ...}: { programs.btop = { enable = true; - settings.update_ms = 100; + settings = { + update_ms = 100; + theme_background = false; + color_theme = "${config.programs.btop.package}/share/btop/themes/dracula.theme"; + }; }; } From d9349d5317c3a40f87dcb56686eeaafce2a3ff0b Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Tue, 2 Apr 2024 12:43:09 +0200 Subject: [PATCH 09/20] New Android ROM on the OnePlus 6T --- hosts/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/default.nix b/hosts/default.nix index cfc2d6f..3459702 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -160,7 +160,7 @@ vpnExtra = { oneplus6t = { ip = "10.100.0.4"; - publicKey = "O6/tKaA8Hs7OEqi15hV4RwviR6vyCTMYv6ZlhsI+tnI="; + publicKey = "cXHPaJXeA/JB7DKlZXR86zYcz1OEVPMOvAmDhBQF91E="; }; }; }; From ae0468bf73df6e2e10e996d7db0ac0732e23ac79 Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Tue, 2 Apr 2024 12:44:14 +0200 Subject: [PATCH 10/20] `syncthing` on the OnePlus 6T --- modules/syncthing/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/syncthing/default.nix b/modules/syncthing/default.nix index 5fdd878..d7597c5 100644 --- a/modules/syncthing/default.nix +++ b/modules/syncthing/default.nix @@ -29,6 +29,12 @@ "tcp://kirk.fleet" ]; }; + onplus6t = { + id = "76BJ2ZE-FPFDWUZ-3UZIENZ-TS6YBGG-EZSF6UE-GLHRBQ2-KTHTRMI-3JWNRAT"; + addresses = [ + "tcp://oneplus6t.fleet" + ]; + }; }; folders = { org = { @@ -39,7 +45,7 @@ kirk = "/home/${config.ccr.username}/org"; } .${config.networking.hostName}; - devices = ["picard" "sisko" "kirk"]; + devices = ["picard" "sisko" "kirk" "onplus6t"]; }; sync = { path = From 57f04d95db31547d65a5365d52286c49fec89e07 Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Tue, 2 Apr 2024 12:44:29 +0200 Subject: [PATCH 11/20] Enable `adb` on `picard` --- hosts/picard/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/picard/default.nix b/hosts/picard/default.nix index 2505601..5e71aa6 100644 --- a/hosts/picard/default.nix +++ b/hosts/picard/default.nix @@ -39,6 +39,7 @@ # "macos-ventura" # "sunshine" "mount-rock5b" + "adb" ] ++ [ ./disko.nix From 145a7214b2cb85308d46628f236c394429d9df93 Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Tue, 2 Apr 2024 12:44:40 +0200 Subject: [PATCH 12/20] Disable SSH's `controlPersist`: was giving problems from mobile through the VPN --- hmModules/shell/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/hmModules/shell/default.nix b/hmModules/shell/default.nix index f67ddbe..2f239f4 100644 --- a/hmModules/shell/default.nix +++ b/hmModules/shell/default.nix @@ -27,7 +27,6 @@ programs.ssh = { enable = true; controlMaster = "auto"; - controlPersist = "10m"; }; # programs.starship = { From 173f1d32ad7c9c223f556fa180e537f6e372d7a8 Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Tue, 2 Apr 2024 12:45:06 +0200 Subject: [PATCH 13/20] `transmission`: always enforce speed limit I believe that the disk is too slow --- modules/transmission/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/transmission/default.nix b/modules/transmission/default.nix index 83d886b..79f12b3 100644 --- a/modules/transmission/default.nix +++ b/modules/transmission/default.nix @@ -21,8 +21,10 @@ upload-slots-per-torrent = 1000; - alt-speed-up = 10000; - alt-speed-down = 10000; + speed-limit-up = 10000; + speed-limit-down = 10000; + alt-speed-up = 20000; + alt-speed-down = 20000; alt-speed-time-enabled = true; alt-speed-time-begin = 540; # 9AM, minutes after midnight alt-speed-time-end = 1380; # 11PM From a1c1373fc54a4457df2e4a12dd528974d0529e8a Mon Sep 17 00:00:00 2001 From: Seven of Nine Date: Tue, 2 Apr 2024 13:10:11 +0000 Subject: [PATCH 14/20] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'ccrEmacs': 'git+https://git.aciceri.dev/aciceri/emacs.git?ref=refs/heads/master&rev=845e682dc294373370efd5b6db99c48a65070a89' (2024-03-13) → 'git+https://git.aciceri.dev/aciceri/emacs.git?ref=refs/heads/master&rev=d3875adaaa70a52c127f2519a2e86eb4dbcf34b0' (2024-03-26) • Updated input 'ccrEmacs/emacs-overlay': 'github:nix-community/emacs-overlay/c68aeff603f1b5c4cc7a57b876cf5e7101f2f21c' (2024-03-13) → 'github:nix-community/emacs-overlay/81d4eb044fac45daf51281a046d413a40f05d103' (2024-03-26) • Updated input 'ccrEmacs/emacs-overlay/nixpkgs': 'github:NixOS/nixpkgs/0ad13a6833440b8e238947e47bea7f11071dc2b2' (2024-03-12) → 'github:NixOS/nixpkgs/44d0940ea560dee511026a53f0e2e2cde489b4d4' (2024-03-23) • Updated input 'ccrEmacs/emacs-overlay/nixpkgs-stable': 'github:NixOS/nixpkgs/ddcd7598b2184008c97e6c9c6a21c5f37590b8d2' (2024-03-11) → 'github:NixOS/nixpkgs/56528ee42526794d413d6f244648aaee4a7b56c0' (2024-03-22) • Updated input 'ccrEmacs/extra-package-combobulate': 'github:mickeynp/combobulate/ee82c568ad639605518f62f82fae4bcc0dfdbb81' (2024-03-11) → 'github:mickeynp/combobulate/f6e092d94ab184b3445fe3d6c0a501f9d7df764a' (2024-03-11) • Updated input 'ccrEmacs/extra-package-copilot': 'github:zerolfx/copilot.el/57d5e670786ca8156772c6dcb38e6ff67c5efd62' (2024-03-13) → 'github:zerolfx/copilot.el/4e203efaa1f4047c800a026ba496d3bda8b67119' (2024-03-09) • Updated input 'ccrEmacs/extra-package-nix-ts-mode': 'github:aciceri/nix-ts-mode/8da9a76cd014d56ee734553a32c9e006e375bce4' (2023-09-17) → 'github:antifuchs/nix-ts-mode/0ef4e663add03d026a1804f57ac7d5453a635b15' (2024-01-18) • Updated input 'ccrEmacs/hercules-ci-effects': 'github:hercules-ci/hercules-ci-effects/9cc7ed20043adf381f1b8354c54ba667b527d538' (2024-03-13) → 'github:hercules-ci/hercules-ci-effects/0ca27bd58e4d5be3135a4bef66b582e57abe8f4a' (2024-02-21) • Updated input 'ccrEmacs/hercules-ci-effects/flake-parts': 'github:hercules-ci/flake-parts/f7b3c975cf067e56e7cda6cb098ebe3fb4d74ca2' (2024-03-01) → 'github:hercules-ci/flake-parts/34fed993f1674c8d06d58b37ce1e0fe5eebcb9f5' (2023-12-01) • Updated input 'ccrEmacs/hercules-ci-effects/nixpkgs': 'github:NixOS/nixpkgs/3030f185ba6a4bf4f18b87f345f104e6a6961f34' (2024-03-09) → 'github:NixOS/nixpkgs/cfc3698c31b1fb9cdcf10f36c9643460264d0ca8' (2023-12-27) • Updated input 'disko': 'github:nix-community/disko/c09c3a9639690f94ddff44c3dd25c85602e5aeb2' (2024-03-18) → 'github:nix-community/disko/611c9ea53250f7bb22286b3d26872280a0e608f9' (2024-04-01) • Updated input 'dream2nix': 'github:nix-community/dream2nix/f017de2de4b78aef8e9d37d1c7ffd61b200c2858' (2024-03-18) → 'github:nix-community/dream2nix/26a6c3a3405cdb2c2218cdc4e1e2bcf7a07af7ba' (2024-03-29) • Updated input 'dream2nix/nixpkgs': 'github:NixOS/nixpkgs/6af7e814afb3b62171eee1edc31989ee61528d25' (2024-03-17) → 'github:NixOS/nixpkgs/72c6ed328aa4e5d9151b1a512f6ad83aca7529fa' (2024-03-28) • Updated input 'flakeParts': 'github:hercules-ci/flake-parts/f7b3c975cf067e56e7cda6cb098ebe3fb4d74ca2' (2024-03-01) → 'github:hercules-ci/flake-parts/9126214d0a59633752a136528f5f3b9aa8565b7d' (2024-04-01) • Updated input 'flakeParts/nixpkgs-lib': 'github:NixOS/nixpkgs/1536926ef5621b09bba54035ae2bb6d806d72ac8?dir=lib' (2024-02-29) → 'github:NixOS/nixpkgs/d8fe5e6c92d0d190646fb9f1056741a229980089?dir=lib' (2024-03-29) • Updated input 'hercules-ci-agent': 'github:hercules-ci/hercules-ci-agent/c3841d842cbe6bf7024b26bb40e44e82bd042273' (2024-03-15) → 'github:hercules-ci/hercules-ci-agent/9a031b7c8e376cb46ffcf56aba2350dc6b1dac5b' (2024-03-18) • Updated input 'homeManager': 'github:nix-community/home-manager/7b3fca5adcf6c709874a8f2e0c364fe9c58db989' (2024-03-17) → 'github:nix-community/home-manager/4be0464472675212654dedf3e021bd5f1d58b92f' (2024-04-02) • Updated input 'nixDarwin': 'github:LnL7/nix-darwin/bcc8afd06e237df060c85bad6af7128e05fd61a3' (2024-03-17) → 'github:LnL7/nix-darwin/36524adc31566655f2f4d55ad6b875fb5c1a4083' (2024-03-30) • Updated input 'nixosHardware': 'github:NixOS/nixos-hardware/968952f950a59dee9ed1e8799dda38c6dfa1bad3' (2024-03-16) → 'github:NixOS/nixos-hardware/9a763a7acc4cfbb8603bb0231fec3eda864f81c0' (2024-03-25) • Updated input 'nixpkgsStable': 'github:NixOS/nixpkgs/614b4613980a522ba49f0d194531beddbb7220d3' (2024-03-17) → 'github:NixOS/nixpkgs/219951b495fc2eac67b1456824cc1ec1fd2ee659' (2024-03-28) • Updated input 'nixpkgsUnstable': 'github:NixOS/nixpkgs/c75037bbf9093a2acb617804ee46320d6d1fea5a' (2024-03-16) → 'github:NixOS/nixpkgs/d8fe5e6c92d0d190646fb9f1056741a229980089' (2024-03-29) • Updated input 'nur': 'github:nix-community/NUR/fc4f9acb61749a12a7ff7ac4020142b121a5dd25' (2024-03-18) → 'github:nix-community/NUR/91edd2127f8365f9e96b37370dcba75b769305fe' (2024-04-02) • Updated input 'pre-commit-hooks': 'github:cachix/pre-commit-hooks.nix/5df5a70ad7575f6601d91f0efec95dd9bc619431' (2024-02-15) → 'github:cachix/pre-commit-hooks.nix/e35aed5fda3cc79f88ed7f1795021e559582093a' (2024-04-02) • Updated input 'pre-commit-hooks/flake-utils': 'github:numtide/flake-utils/4022d587cbbfd70fe950c1e2083a02621806a725' (2023-12-04) → 'github:numtide/flake-utils/b1d9ab70662946ef0850d488da1c9019f3a9752a' (2024-03-11) • Updated input 'pre-commit-hooks/gitignore': 'github:hercules-ci/gitignore.nix/43e1aa1308018f37118e34d3a9cb4f5e75dc11d5' (2023-12-29) → 'github:hercules-ci/gitignore.nix/637db329424fd7e46cf4185293b9cc8c88c95394' (2024-02-28) • Updated input 'treefmt-nix': 'github:numtide/treefmt-nix/35791f76524086ab4b785a33e4abbedfda64bd22' (2024-03-12) → 'github:numtide/treefmt-nix/49dc4a92b02b8e68798abd99184f228243b6e3ac' (2024-04-01) --- flake.lock | 96 +++++++++++++++++++++++++++--------------------------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/flake.lock b/flake.lock index 2457923..c93a45c 100644 --- a/flake.lock +++ b/flake.lock @@ -82,11 +82,11 @@ ] }, "locked": { - "lastModified": 1710724748, - "narHash": "sha256-aXlifKr6Brg0SBUBgRNEBaZf3JLUeGhM9BX2gam+vvo=", + "lastModified": 1711934712, + "narHash": "sha256-sBDe+QmX/QohlnKeSEzrftcXyZL5FY09OMjZ59Rpyy4=", "owner": "nix-community", "repo": "disko", - "rev": "c09c3a9639690f94ddff44c3dd25c85602e5aeb2", + "rev": "611c9ea53250f7bb22286b3d26872280a0e608f9", "type": "github" }, "original": { @@ -102,11 +102,11 @@ "pyproject-nix": "pyproject-nix" }, "locked": { - "lastModified": 1710760530, - "narHash": "sha256-hrDlPwwL8S86y3UviIZFEe0uqi7+dRSRA/xPGbVVgcg=", + "lastModified": 1711684574, + "narHash": "sha256-/7clw2bkbDLzqrToVNPDaqHuijni5VRoB6yqdZdBmhw=", "owner": "nix-community", "repo": "dream2nix", - "rev": "f017de2de4b78aef8e9d37d1c7ffd61b200c2858", + "rev": "26a6c3a3405cdb2c2218cdc4e1e2bcf7a07af7ba", "type": "github" }, "original": { @@ -458,11 +458,11 @@ "systems": "systems_3" }, "locked": { - "lastModified": 1701680307, - "narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=", + "lastModified": 1710146030, + "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=", "owner": "numtide", "repo": "flake-utils", - "rev": "4022d587cbbfd70fe950c1e2083a02621806a725", + "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a", "type": "github" }, "original": { @@ -476,11 +476,11 @@ "nixpkgs-lib": "nixpkgs-lib_2" }, "locked": { - "lastModified": 1709336216, - "narHash": "sha256-Dt/wOWeW6Sqm11Yh+2+t0dfEWxoMxGBvv3JpIocFl9E=", + "lastModified": 1712014858, + "narHash": "sha256-sB4SWl2lX95bExY2gMFG5HIzvva5AVMJd4Igm+GpZNw=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "f7b3c975cf067e56e7cda6cb098ebe3fb4d74ca2", + "rev": "9126214d0a59633752a136528f5f3b9aa8565b7d", "type": "github" }, "original": { @@ -497,11 +497,11 @@ ] }, "locked": { - "lastModified": 1703887061, - "narHash": "sha256-gGPa9qWNc6eCXT/+Z5/zMkyYOuRZqeFZBDbopNZQkuY=", + "lastModified": 1709087332, + "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=", "owner": "hercules-ci", "repo": "gitignore.nix", - "rev": "43e1aa1308018f37118e34d3a9cb4f5e75dc11d5", + "rev": "637db329424fd7e46cf4185293b9cc8c88c95394", "type": "github" }, "original": { @@ -533,11 +533,11 @@ "nixpkgs": "nixpkgs_5" }, "locked": { - "lastModified": 1710524333, - "narHash": "sha256-AyAeq3iUL8sthxiGNAoGd9+WiXOEfh6D7hJSTelLZQs=", + "lastModified": 1710779311, + "narHash": "sha256-fDN18WvX4hhlLUdnpSgu/DhfJCjlSTTmk+O0uQntfag=", "owner": "hercules-ci", "repo": "hercules-ci-agent", - "rev": "c3841d842cbe6bf7024b26bb40e44e82bd042273", + "rev": "9a031b7c8e376cb46ffcf56aba2350dc6b1dac5b", "type": "github" }, "original": { @@ -631,11 +631,11 @@ ] }, "locked": { - "lastModified": 1710714957, - "narHash": "sha256-eZCxuF58YWgaJMMRrn8oRkwRhxooe5kBS/s2wRVr9PA=", + "lastModified": 1712016346, + "narHash": "sha256-O2nO7pD+krq+4HgkLB4VThRtAucIPfXDs/jJqCGlK1w=", "owner": "nix-community", "repo": "home-manager", - "rev": "7b3fca5adcf6c709874a8f2e0c364fe9c58db989", + "rev": "4be0464472675212654dedf3e021bd5f1d58b92f", "type": "github" }, "original": { @@ -732,11 +732,11 @@ ] }, "locked": { - "lastModified": 1710717205, - "narHash": "sha256-Wf3gHh5uV6W1TV/A8X8QJf99a5ypDSugY4sNtdJDe0A=", + "lastModified": 1711763326, + "narHash": "sha256-sXcesZWKXFlEQ8oyGHnfk4xc9f2Ip0X/+YZOq3sKviI=", "owner": "LnL7", "repo": "nix-darwin", - "rev": "bcc8afd06e237df060c85bad6af7128e05fd61a3", + "rev": "36524adc31566655f2f4d55ad6b875fb5c1a4083", "type": "github" }, "original": { @@ -771,11 +771,11 @@ }, "nixosHardware": { "locked": { - "lastModified": 1710622004, - "narHash": "sha256-6zR642tXcZzzk3C8BHxlCrR0yh8z8zMXLiuXpWDIpX0=", + "lastModified": 1711352745, + "narHash": "sha256-luvqik+i3HTvCbXQZgB6uggvEcxI9uae0nmrgtXJ17U=", "owner": "NixOS", "repo": "nixos-hardware", - "rev": "968952f950a59dee9ed1e8799dda38c6dfa1bad3", + "rev": "9a763a7acc4cfbb8603bb0231fec3eda864f81c0", "type": "github" }, "original": { @@ -837,11 +837,11 @@ "nixpkgs-lib_2": { "locked": { "dir": "lib", - "lastModified": 1709237383, - "narHash": "sha256-cy6ArO4k5qTx+l5o+0mL9f5fa86tYUX3ozE1S+Txlds=", + "lastModified": 1711703276, + "narHash": "sha256-iMUFArF0WCatKK6RzfUJknjem0H9m4KgorO/p3Dopkk=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "1536926ef5621b09bba54035ae2bb6d806d72ac8", + "rev": "d8fe5e6c92d0d190646fb9f1056741a229980089", "type": "github" }, "original": { @@ -924,11 +924,11 @@ }, "nixpkgsStable": { "locked": { - "lastModified": 1710695816, - "narHash": "sha256-3Eh7fhEID17pv9ZxrPwCLfqXnYP006RKzSs0JptsN84=", + "lastModified": 1711668574, + "narHash": "sha256-u1dfs0ASQIEr1icTVrsKwg2xToIpn7ZXxW3RHfHxshg=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "614b4613980a522ba49f0d194531beddbb7220d3", + "rev": "219951b495fc2eac67b1456824cc1ec1fd2ee659", "type": "github" }, "original": { @@ -940,11 +940,11 @@ }, "nixpkgsUnstable": { "locked": { - "lastModified": 1710631334, - "narHash": "sha256-rL5LSYd85kplL5othxK5lmAtjyMOBg390sGBTb3LRMM=", + "lastModified": 1711703276, + "narHash": "sha256-iMUFArF0WCatKK6RzfUJknjem0H9m4KgorO/p3Dopkk=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "c75037bbf9093a2acb617804ee46320d6d1fea5a", + "rev": "d8fe5e6c92d0d190646fb9f1056741a229980089", "type": "github" }, "original": { @@ -1004,11 +1004,11 @@ }, "nixpkgs_4": { "locked": { - "lastModified": 1710669607, - "narHash": "sha256-kNj0Ka1/rkQRcigYTa1c5B6IcFuxDgM3s9jYuKUhxyM=", + "lastModified": 1711624657, + "narHash": "sha256-IViG6BKCJY/I6oRNfAANf/QitYylepQSCzgam0TF+bs=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "6af7e814afb3b62171eee1edc31989ee61528d25", + "rev": "72c6ed328aa4e5d9151b1a512f6ad83aca7529fa", "type": "github" }, "original": { @@ -1084,11 +1084,11 @@ }, "nur": { "locked": { - "lastModified": 1710758009, - "narHash": "sha256-E60fc4liidYWo+0FKGwDFndhcmV40ZNwfDbROTwaInA=", + "lastModified": 1712062467, + "narHash": "sha256-+wD2/uSdixB6wuemURofkIx1ekN4/qm6UXeDLrlQBpo=", "owner": "nix-community", "repo": "NUR", - "rev": "fc4f9acb61749a12a7ff7ac4020142b121a5dd25", + "rev": "91edd2127f8365f9e96b37370dcba75b769305fe", "type": "github" }, "original": { @@ -1142,11 +1142,11 @@ ] }, "locked": { - "lastModified": 1708018599, - "narHash": "sha256-M+Ng6+SePmA8g06CmUZWi1AjG2tFBX9WCXElBHEKnyM=", + "lastModified": 1712055707, + "narHash": "sha256-4XLvuSIDZJGS17xEwSrNuJLL7UjDYKGJSbK1WWX2AK8=", "owner": "cachix", "repo": "pre-commit-hooks.nix", - "rev": "5df5a70ad7575f6601d91f0efec95dd9bc619431", + "rev": "e35aed5fda3cc79f88ed7f1795021e559582093a", "type": "github" }, "original": { @@ -1377,11 +1377,11 @@ ] }, "locked": { - "lastModified": 1710278050, - "narHash": "sha256-Oc6BP7soXqb8itlHI8UKkdf3V9GeJpa1S39SR5+HJys=", + "lastModified": 1711963903, + "narHash": "sha256-N3QDhoaX+paWXHbEXZapqd1r95mdshxToGowtjtYkGI=", "owner": "numtide", "repo": "treefmt-nix", - "rev": "35791f76524086ab4b785a33e4abbedfda64bd22", + "rev": "49dc4a92b02b8e68798abd99184f228243b6e3ac", "type": "github" }, "original": { From 934120a952d7fd964f3c861c5307b978a213f8ca Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Tue, 2 Apr 2024 20:56:05 +0200 Subject: [PATCH 15/20] Revert "`wezterm` now works as wayland native application" This reverts commit ee682fcf3071f3d59b8907b9a1525fb3e0403269. --- hmModules/wezterm/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hmModules/wezterm/default.nix b/hmModules/wezterm/default.nix index 09d066d..b6ad88b 100644 --- a/hmModules/wezterm/default.nix +++ b/hmModules/wezterm/default.nix @@ -3,6 +3,7 @@ enable = true; extraConfig = '' return { + enable_wayland = false; -- https://github.com/wez/wezterm/issues/4483 font = wezterm.font_with_fallback { { family = 'Iosevka Comfy', From 867c475918861fb8e0cccce8dfbf36d68c88c9e7 Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Mon, 8 Apr 2024 17:43:53 +0200 Subject: [PATCH 16/20] Enable `adb` on `kirk` --- hosts/kirk/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/kirk/default.nix b/hosts/kirk/default.nix index 7f33db6..896a801 100644 --- a/hosts/kirk/default.nix +++ b/hosts/kirk/default.nix @@ -30,6 +30,7 @@ "greetd" "syncthing" "mount-rock5b" + "adb" ] ++ [ ./disko.nix From 53eea2bcede57ed9646d31fc1d4137bb9e17141a Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Mon, 8 Apr 2024 17:44:05 +0200 Subject: [PATCH 17/20] Set MTU to 1200 for the Wireguard interface, seems to mitigate problems when connected through the phone --- modules/wireguard-client/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/wireguard-client/default.nix b/modules/wireguard-client/default.nix index e02a34a..9a93f17 100644 --- a/modules/wireguard-client/default.nix +++ b/modules/wireguard-client/default.nix @@ -6,6 +6,7 @@ imports = [../wireguard-common]; networking.wireguard.interfaces.wg0 = { + mtu = 1200; ips = ["${vpn.${config.networking.hostName}.ip}/32"]; peers = [ { From 731e2118a5a68336c49a691346dc27a09b5e9d87 Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Tue, 9 Apr 2024 16:58:39 +0200 Subject: [PATCH 18/20] [CI] typo --- .forgejo/workflows/update-flake-lock.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/update-flake-lock.yaml b/.forgejo/workflows/update-flake-lock.yaml index c19d185..eadba29 100644 --- a/.forgejo/workflows/update-flake-lock.yaml +++ b/.forgejo/workflows/update-flake-lock.yaml @@ -18,7 +18,8 @@ jobs: git config --global user.email "sevenofnine@stronzi.org" git config --global user.name "Seven of Nine" - name: Update flake's lockfile and create commit - run: nix flake update --commit-lock-file# - name: Push commit to the `update-flake-lock` remote branch + run: nix flake update --commit-lock-file + - name: Push commit to the `update-flake-lock` remote branch run: git push origin --force update-flake-lock # sevenOfNix needs write access to the repository - name: Login as `Seven of Nix` run: | From c02f57276cd69d9fd2564dd01972a1ba603fe291 Mon Sep 17 00:00:00 2001 From: Seven of Nine Date: Tue, 9 Apr 2024 15:00:30 +0000 Subject: [PATCH 19/20] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'agenix': 'github:ryantm/agenix/8cb01a0e717311680e0cbca06a76cbceba6f3ed6' (2024-02-13) → 'github:ryantm/agenix/1381a759b205dff7a6818733118d02253340fd5e' (2024-04-02) • Updated input 'ccrEmacs': 'git+https://git.aciceri.dev/aciceri/emacs.git?ref=refs/heads/master&rev=845e682dc294373370efd5b6db99c48a65070a89' (2024-03-13) → 'git+https://git.aciceri.dev/aciceri/emacs.git?ref=refs/heads/master&rev=c5bdfd91071fb06261c90655ac56ab61a09aa38c' (2024-04-08) • Updated input 'ccrEmacs/extra-package-nix-ts-mode': 'github:aciceri/nix-ts-mode/8da9a76cd014d56ee734553a32c9e006e375bce4' (2023-09-17) → 'github:antifuchs/nix-ts-mode/0ef4e663add03d026a1804f57ac7d5453a635b15' (2024-01-18) • Updated input 'disko': 'github:nix-community/disko/c09c3a9639690f94ddff44c3dd25c85602e5aeb2' (2024-03-18) → 'github:nix-community/disko/79eab0e82cb126bf4ac170f44af82479f0895ab5' (2024-04-08) • Updated input 'dream2nix': 'github:nix-community/dream2nix/f017de2de4b78aef8e9d37d1c7ffd61b200c2858' (2024-03-18) → 'github:nix-community/dream2nix/400032c6303f82b07a09c9784ab5569a51544987' (2024-04-09) • Updated input 'dream2nix/nixpkgs': 'github:NixOS/nixpkgs/6af7e814afb3b62171eee1edc31989ee61528d25' (2024-03-17) → 'github:NixOS/nixpkgs/efe8ce06ca261f370d672def5b1e0be300c726e1' (2024-04-07) • Updated input 'flakeParts': 'github:hercules-ci/flake-parts/f7b3c975cf067e56e7cda6cb098ebe3fb4d74ca2' (2024-03-01) → 'github:hercules-ci/flake-parts/9126214d0a59633752a136528f5f3b9aa8565b7d' (2024-04-01) • Updated input 'flakeParts/nixpkgs-lib': 'github:NixOS/nixpkgs/1536926ef5621b09bba54035ae2bb6d806d72ac8?dir=lib' (2024-02-29) → 'github:NixOS/nixpkgs/d8fe5e6c92d0d190646fb9f1056741a229980089?dir=lib' (2024-03-29) • Updated input 'hercules-ci-agent': 'github:hercules-ci/hercules-ci-agent/c3841d842cbe6bf7024b26bb40e44e82bd042273' (2024-03-15) → 'github:hercules-ci/hercules-ci-agent/9a031b7c8e376cb46ffcf56aba2350dc6b1dac5b' (2024-03-18) • Updated input 'homeManager': 'github:nix-community/home-manager/7b3fca5adcf6c709874a8f2e0c364fe9c58db989' (2024-03-17) → 'github:nix-community/home-manager/40a99619da804a78a0b166e5c6911108c059c3a8' (2024-04-09) • Updated input 'nixDarwin': 'github:LnL7/nix-darwin/bcc8afd06e237df060c85bad6af7128e05fd61a3' (2024-03-17) → 'github:LnL7/nix-darwin/36524adc31566655f2f4d55ad6b875fb5c1a4083' (2024-03-30) • Updated input 'nixosHardware': 'github:NixOS/nixos-hardware/968952f950a59dee9ed1e8799dda38c6dfa1bad3' (2024-03-16) → 'github:NixOS/nixos-hardware/1e3b3a35b7083f4152f5a516798cf9b21e686465' (2024-04-08) • Updated input 'nixpkgsStable': 'github:NixOS/nixpkgs/614b4613980a522ba49f0d194531beddbb7220d3' (2024-03-17) → 'github:NixOS/nixpkgs/d272ca50d1f7424fbfcd1e6f1c9e01d92f6da167' (2024-04-08) • Updated input 'nixpkgsUnstable': 'github:NixOS/nixpkgs/c75037bbf9093a2acb617804ee46320d6d1fea5a' (2024-03-16) → 'github:NixOS/nixpkgs/ff0dbd94265ac470dda06a657d5fe49de93b4599' (2024-04-06) • Updated input 'nur': 'github:nix-community/NUR/fc4f9acb61749a12a7ff7ac4020142b121a5dd25' (2024-03-18) → 'github:nix-community/NUR/7d17d2fa5094e28ddd369ced837f44073b436662' (2024-04-09) • Updated input 'pre-commit-hooks': 'github:cachix/pre-commit-hooks.nix/5df5a70ad7575f6601d91f0efec95dd9bc619431' (2024-02-15) → 'github:cachix/pre-commit-hooks.nix/70f504012f0a132ac33e56988e1028d88a48855c' (2024-04-08) • Updated input 'pre-commit-hooks/flake-utils': 'github:numtide/flake-utils/4022d587cbbfd70fe950c1e2083a02621806a725' (2023-12-04) → 'github:numtide/flake-utils/b1d9ab70662946ef0850d488da1c9019f3a9752a' (2024-03-11) • Updated input 'pre-commit-hooks/gitignore': 'github:hercules-ci/gitignore.nix/43e1aa1308018f37118e34d3a9cb4f5e75dc11d5' (2023-12-29) → 'github:hercules-ci/gitignore.nix/637db329424fd7e46cf4185293b9cc8c88c95394' (2024-02-28) • Updated input 'treefmt-nix': 'github:numtide/treefmt-nix/35791f76524086ab4b785a33e4abbedfda64bd22' (2024-03-12) → 'github:numtide/treefmt-nix/49dc4a92b02b8e68798abd99184f228243b6e3ac' (2024-04-01) --- flake.lock | 122 ++++++++++++++++++++++++++--------------------------- 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/flake.lock b/flake.lock index c731bcf..eb26412 100644 --- a/flake.lock +++ b/flake.lock @@ -8,11 +8,11 @@ "systems": "systems" }, "locked": { - "lastModified": 1707830867, - "narHash": "sha256-PAdwm5QqdlwIqGrfzzvzZubM+FXtilekQ/FA0cI49/o=", + "lastModified": 1712079060, + "narHash": "sha256-/JdiT9t+zzjChc5qQiF+jhrVhRt8figYH29rZO7pFe4=", "owner": "ryantm", "repo": "agenix", - "rev": "8cb01a0e717311680e0cbca06a76cbceba6f3ed6", + "rev": "1381a759b205dff7a6818733118d02253340fd5e", "type": "github" }, "original": { @@ -40,11 +40,11 @@ ] }, "locked": { - "lastModified": 1710336635, - "narHash": "sha256-tEc3mD8LNujcm94BigiJZTGulCCGOhpXoNebQGzezLA=", + "lastModified": 1712572393, + "narHash": "sha256-1rh9Avt4prjMhFl4roOxeoA2wrmHQ+4AdETD57Pb6mo=", "ref": "refs/heads/master", - "rev": "845e682dc294373370efd5b6db99c48a65070a89", - "revCount": 165, + "rev": "c5bdfd91071fb06261c90655ac56ab61a09aa38c", + "revCount": 169, "type": "git", "url": "https://git.aciceri.dev/aciceri/emacs.git" }, @@ -82,11 +82,11 @@ ] }, "locked": { - "lastModified": 1710724748, - "narHash": "sha256-aXlifKr6Brg0SBUBgRNEBaZf3JLUeGhM9BX2gam+vvo=", + "lastModified": 1712612224, + "narHash": "sha256-Tv4C8OSPVmm4LbpJGLFSODyvJy6DqrisEGPCQdNVOeY=", "owner": "nix-community", "repo": "disko", - "rev": "c09c3a9639690f94ddff44c3dd25c85602e5aeb2", + "rev": "79eab0e82cb126bf4ac170f44af82479f0895ab5", "type": "github" }, "original": { @@ -102,11 +102,11 @@ "pyproject-nix": "pyproject-nix" }, "locked": { - "lastModified": 1710760530, - "narHash": "sha256-hrDlPwwL8S86y3UviIZFEe0uqi7+dRSRA/xPGbVVgcg=", + "lastModified": 1712643040, + "narHash": "sha256-4vkxrZnHulJ8r6lewSr7oHjy0le66CxBRSgGr8WR3qg=", "owner": "nix-community", "repo": "dream2nix", - "rev": "f017de2de4b78aef8e9d37d1c7ffd61b200c2858", + "rev": "400032c6303f82b07a09c9784ab5569a51544987", "type": "github" }, "original": { @@ -218,16 +218,16 @@ "extra-package-nix-ts-mode": { "flake": false, "locked": { - "lastModified": 1694965545, - "narHash": "sha256-HijDb+2ojDk1Evv/KEIrZ/xW+QXz6IJoUllniTsE3hs=", - "owner": "aciceri", + "lastModified": 1705596103, + "narHash": "sha256-jEUmhfLE7cFan4/PF4qBiEOLsjM3Q4iSDTlM+0CYwZg=", + "owner": "antifuchs", "repo": "nix-ts-mode", - "rev": "8da9a76cd014d56ee734553a32c9e006e375bce4", + "rev": "0ef4e663add03d026a1804f57ac7d5453a635b15", "type": "github" }, "original": { - "owner": "aciceri", - "ref": "improved", + "owner": "antifuchs", + "ref": "improve-indented-string-indentation", "repo": "nix-ts-mode", "type": "github" } @@ -458,11 +458,11 @@ "systems": "systems_3" }, "locked": { - "lastModified": 1701680307, - "narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=", + "lastModified": 1710146030, + "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=", "owner": "numtide", "repo": "flake-utils", - "rev": "4022d587cbbfd70fe950c1e2083a02621806a725", + "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a", "type": "github" }, "original": { @@ -476,11 +476,11 @@ "nixpkgs-lib": "nixpkgs-lib_2" }, "locked": { - "lastModified": 1709336216, - "narHash": "sha256-Dt/wOWeW6Sqm11Yh+2+t0dfEWxoMxGBvv3JpIocFl9E=", + "lastModified": 1712014858, + "narHash": "sha256-sB4SWl2lX95bExY2gMFG5HIzvva5AVMJd4Igm+GpZNw=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "f7b3c975cf067e56e7cda6cb098ebe3fb4d74ca2", + "rev": "9126214d0a59633752a136528f5f3b9aa8565b7d", "type": "github" }, "original": { @@ -497,11 +497,11 @@ ] }, "locked": { - "lastModified": 1703887061, - "narHash": "sha256-gGPa9qWNc6eCXT/+Z5/zMkyYOuRZqeFZBDbopNZQkuY=", + "lastModified": 1709087332, + "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=", "owner": "hercules-ci", "repo": "gitignore.nix", - "rev": "43e1aa1308018f37118e34d3a9cb4f5e75dc11d5", + "rev": "637db329424fd7e46cf4185293b9cc8c88c95394", "type": "github" }, "original": { @@ -533,11 +533,11 @@ "nixpkgs": "nixpkgs_5" }, "locked": { - "lastModified": 1710524333, - "narHash": "sha256-AyAeq3iUL8sthxiGNAoGd9+WiXOEfh6D7hJSTelLZQs=", + "lastModified": 1710779311, + "narHash": "sha256-fDN18WvX4hhlLUdnpSgu/DhfJCjlSTTmk+O0uQntfag=", "owner": "hercules-ci", "repo": "hercules-ci-agent", - "rev": "c3841d842cbe6bf7024b26bb40e44e82bd042273", + "rev": "9a031b7c8e376cb46ffcf56aba2350dc6b1dac5b", "type": "github" }, "original": { @@ -631,11 +631,11 @@ ] }, "locked": { - "lastModified": 1710714957, - "narHash": "sha256-eZCxuF58YWgaJMMRrn8oRkwRhxooe5kBS/s2wRVr9PA=", + "lastModified": 1712645849, + "narHash": "sha256-67v20E0gH7nvAaMsah2oRIocnxGO25fATUyzQHIywxQ=", "owner": "nix-community", "repo": "home-manager", - "rev": "7b3fca5adcf6c709874a8f2e0c364fe9c58db989", + "rev": "40a99619da804a78a0b166e5c6911108c059c3a8", "type": "github" }, "original": { @@ -732,11 +732,11 @@ ] }, "locked": { - "lastModified": 1710717205, - "narHash": "sha256-Wf3gHh5uV6W1TV/A8X8QJf99a5ypDSugY4sNtdJDe0A=", + "lastModified": 1711763326, + "narHash": "sha256-sXcesZWKXFlEQ8oyGHnfk4xc9f2Ip0X/+YZOq3sKviI=", "owner": "LnL7", "repo": "nix-darwin", - "rev": "bcc8afd06e237df060c85bad6af7128e05fd61a3", + "rev": "36524adc31566655f2f4d55ad6b875fb5c1a4083", "type": "github" }, "original": { @@ -771,11 +771,11 @@ }, "nixosHardware": { "locked": { - "lastModified": 1710622004, - "narHash": "sha256-6zR642tXcZzzk3C8BHxlCrR0yh8z8zMXLiuXpWDIpX0=", + "lastModified": 1712566108, + "narHash": "sha256-c9nT2ZODGqobISP41kUwCQ84Srwg7a/1TmPFQuol2/8=", "owner": "NixOS", "repo": "nixos-hardware", - "rev": "968952f950a59dee9ed1e8799dda38c6dfa1bad3", + "rev": "1e3b3a35b7083f4152f5a516798cf9b21e686465", "type": "github" }, "original": { @@ -837,11 +837,11 @@ "nixpkgs-lib_2": { "locked": { "dir": "lib", - "lastModified": 1709237383, - "narHash": "sha256-cy6ArO4k5qTx+l5o+0mL9f5fa86tYUX3ozE1S+Txlds=", + "lastModified": 1711703276, + "narHash": "sha256-iMUFArF0WCatKK6RzfUJknjem0H9m4KgorO/p3Dopkk=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "1536926ef5621b09bba54035ae2bb6d806d72ac8", + "rev": "d8fe5e6c92d0d190646fb9f1056741a229980089", "type": "github" }, "original": { @@ -924,11 +924,11 @@ }, "nixpkgsStable": { "locked": { - "lastModified": 1710695816, - "narHash": "sha256-3Eh7fhEID17pv9ZxrPwCLfqXnYP006RKzSs0JptsN84=", + "lastModified": 1712588820, + "narHash": "sha256-y31s5idk3jMJMAVE4Ud9AdI7HT3CgTAeMTJ0StqKN7Y=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "614b4613980a522ba49f0d194531beddbb7220d3", + "rev": "d272ca50d1f7424fbfcd1e6f1c9e01d92f6da167", "type": "github" }, "original": { @@ -940,11 +940,11 @@ }, "nixpkgsUnstable": { "locked": { - "lastModified": 1710631334, - "narHash": "sha256-rL5LSYd85kplL5othxK5lmAtjyMOBg390sGBTb3LRMM=", + "lastModified": 1712439257, + "narHash": "sha256-aSpiNepFOMk9932HOax0XwNxbA38GOUVOiXfUVPOrck=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "c75037bbf9093a2acb617804ee46320d6d1fea5a", + "rev": "ff0dbd94265ac470dda06a657d5fe49de93b4599", "type": "github" }, "original": { @@ -1004,11 +1004,11 @@ }, "nixpkgs_4": { "locked": { - "lastModified": 1710669607, - "narHash": "sha256-kNj0Ka1/rkQRcigYTa1c5B6IcFuxDgM3s9jYuKUhxyM=", + "lastModified": 1712482522, + "narHash": "sha256-Ai/xNgZpbwGcw0TSXwEPwwbPi8Iu906sB9M9z3o6UgA=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "6af7e814afb3b62171eee1edc31989ee61528d25", + "rev": "efe8ce06ca261f370d672def5b1e0be300c726e1", "type": "github" }, "original": { @@ -1084,11 +1084,11 @@ }, "nur": { "locked": { - "lastModified": 1710758009, - "narHash": "sha256-E60fc4liidYWo+0FKGwDFndhcmV40ZNwfDbROTwaInA=", + "lastModified": 1712671839, + "narHash": "sha256-LjehUc4gAnqGckdck5ul+nWJKAjTodS/Nd+PuO3sIaM=", "owner": "nix-community", "repo": "NUR", - "rev": "fc4f9acb61749a12a7ff7ac4020142b121a5dd25", + "rev": "7d17d2fa5094e28ddd369ced837f44073b436662", "type": "github" }, "original": { @@ -1142,11 +1142,11 @@ ] }, "locked": { - "lastModified": 1708018599, - "narHash": "sha256-M+Ng6+SePmA8g06CmUZWi1AjG2tFBX9WCXElBHEKnyM=", + "lastModified": 1712579741, + "narHash": "sha256-igpsH+pa6yFwYOdah3cFciCk8gw+ytniG9quf5f/q84=", "owner": "cachix", "repo": "pre-commit-hooks.nix", - "rev": "5df5a70ad7575f6601d91f0efec95dd9bc619431", + "rev": "70f504012f0a132ac33e56988e1028d88a48855c", "type": "github" }, "original": { @@ -1377,11 +1377,11 @@ ] }, "locked": { - "lastModified": 1710278050, - "narHash": "sha256-Oc6BP7soXqb8itlHI8UKkdf3V9GeJpa1S39SR5+HJys=", + "lastModified": 1711963903, + "narHash": "sha256-N3QDhoaX+paWXHbEXZapqd1r95mdshxToGowtjtYkGI=", "owner": "numtide", "repo": "treefmt-nix", - "rev": "35791f76524086ab4b785a33e4abbedfda64bd22", + "rev": "49dc4a92b02b8e68798abd99184f228243b6e3ac", "type": "github" }, "original": { From 15438eec102e5cf9c4bb096ba65970e0a860a781 Mon Sep 17 00:00:00 2001 From: Seven of Nine Date: Wed, 10 Apr 2024 13:01:45 +0000 Subject: [PATCH 20/20] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'agenix': 'github:ryantm/agenix/8cb01a0e717311680e0cbca06a76cbceba6f3ed6' (2024-02-13) → 'github:ryantm/agenix/1381a759b205dff7a6818733118d02253340fd5e' (2024-04-02) • Updated input 'ccrEmacs': 'git+https://git.aciceri.dev/aciceri/emacs.git?ref=refs/heads/master&rev=d3875adaaa70a52c127f2519a2e86eb4dbcf34b0' (2024-03-26) → 'git+https://git.aciceri.dev/aciceri/emacs.git?ref=refs/heads/master&rev=c5bdfd91071fb06261c90655ac56ab61a09aa38c' (2024-04-08) • Updated input 'ccrEmacs/emacs-overlay': 'github:nix-community/emacs-overlay/81d4eb044fac45daf51281a046d413a40f05d103' (2024-03-26) → 'github:nix-community/emacs-overlay/c68aeff603f1b5c4cc7a57b876cf5e7101f2f21c' (2024-03-13) • Updated input 'ccrEmacs/emacs-overlay/nixpkgs': 'github:NixOS/nixpkgs/44d0940ea560dee511026a53f0e2e2cde489b4d4' (2024-03-23) → 'github:NixOS/nixpkgs/0ad13a6833440b8e238947e47bea7f11071dc2b2' (2024-03-12) • Updated input 'ccrEmacs/emacs-overlay/nixpkgs-stable': 'github:NixOS/nixpkgs/56528ee42526794d413d6f244648aaee4a7b56c0' (2024-03-22) → 'github:NixOS/nixpkgs/ddcd7598b2184008c97e6c9c6a21c5f37590b8d2' (2024-03-11) • Updated input 'ccrEmacs/extra-package-combobulate': 'github:mickeynp/combobulate/f6e092d94ab184b3445fe3d6c0a501f9d7df764a' (2024-03-11) → 'github:mickeynp/combobulate/ee82c568ad639605518f62f82fae4bcc0dfdbb81' (2024-03-11) • Updated input 'ccrEmacs/extra-package-copilot': 'github:zerolfx/copilot.el/4e203efaa1f4047c800a026ba496d3bda8b67119' (2024-03-09) → 'github:zerolfx/copilot.el/57d5e670786ca8156772c6dcb38e6ff67c5efd62' (2024-03-13) • Updated input 'ccrEmacs/hercules-ci-effects': 'github:hercules-ci/hercules-ci-effects/0ca27bd58e4d5be3135a4bef66b582e57abe8f4a' (2024-02-21) → 'github:hercules-ci/hercules-ci-effects/9cc7ed20043adf381f1b8354c54ba667b527d538' (2024-03-13) • Updated input 'ccrEmacs/hercules-ci-effects/flake-parts': 'github:hercules-ci/flake-parts/34fed993f1674c8d06d58b37ce1e0fe5eebcb9f5' (2023-12-01) → 'github:hercules-ci/flake-parts/f7b3c975cf067e56e7cda6cb098ebe3fb4d74ca2' (2024-03-01) • Updated input 'ccrEmacs/hercules-ci-effects/nixpkgs': 'github:NixOS/nixpkgs/cfc3698c31b1fb9cdcf10f36c9643460264d0ca8' (2023-12-27) → 'github:NixOS/nixpkgs/3030f185ba6a4bf4f18b87f345f104e6a6961f34' (2024-03-09) • Updated input 'disko': 'github:nix-community/disko/611c9ea53250f7bb22286b3d26872280a0e608f9' (2024-04-01) → 'github:nix-community/disko/79eab0e82cb126bf4ac170f44af82479f0895ab5' (2024-04-08) • Updated input 'dream2nix': 'github:nix-community/dream2nix/26a6c3a3405cdb2c2218cdc4e1e2bcf7a07af7ba' (2024-03-29) → 'github:nix-community/dream2nix/400032c6303f82b07a09c9784ab5569a51544987' (2024-04-09) • Updated input 'dream2nix/nixpkgs': 'github:NixOS/nixpkgs/72c6ed328aa4e5d9151b1a512f6ad83aca7529fa' (2024-03-28) → 'github:NixOS/nixpkgs/efe8ce06ca261f370d672def5b1e0be300c726e1' (2024-04-07) • Updated input 'homeManager': 'github:nix-community/home-manager/4be0464472675212654dedf3e021bd5f1d58b92f' (2024-04-02) → 'github:nix-community/home-manager/18f89ef74f0d48635488ccd6a5e30dc9d48a3a87' (2024-04-10) • Updated input 'nixosHardware': 'github:NixOS/nixos-hardware/9a763a7acc4cfbb8603bb0231fec3eda864f81c0' (2024-03-25) → 'github:NixOS/nixos-hardware/805adee81c82efbe50cac7398c4de05769488ed9' (2024-04-10) • Updated input 'nixpkgsStable': 'github:NixOS/nixpkgs/219951b495fc2eac67b1456824cc1ec1fd2ee659' (2024-03-28) → 'github:NixOS/nixpkgs/d272ca50d1f7424fbfcd1e6f1c9e01d92f6da167' (2024-04-08) • Updated input 'nixpkgsUnstable': 'github:NixOS/nixpkgs/d8fe5e6c92d0d190646fb9f1056741a229980089' (2024-03-29) → 'github:NixOS/nixpkgs/4cba8b53da471aea2ab2b0c1f30a81e7c451f4b6' (2024-04-08) • Updated input 'nur': 'github:nix-community/NUR/91edd2127f8365f9e96b37370dcba75b769305fe' (2024-04-02) → 'github:nix-community/NUR/72a299e9362607acd61c99c1858d0b4d1e6d2aef' (2024-04-10) • Updated input 'pre-commit-hooks': 'github:cachix/pre-commit-hooks.nix/e35aed5fda3cc79f88ed7f1795021e559582093a' (2024-04-02) → 'github:cachix/pre-commit-hooks.nix/70f504012f0a132ac33e56988e1028d88a48855c' (2024-04-08) --- flake.lock | 116 ++++++++++++++++++++++++++--------------------------- 1 file changed, 58 insertions(+), 58 deletions(-) diff --git a/flake.lock b/flake.lock index c93a45c..c5f2642 100644 --- a/flake.lock +++ b/flake.lock @@ -8,11 +8,11 @@ "systems": "systems" }, "locked": { - "lastModified": 1707830867, - "narHash": "sha256-PAdwm5QqdlwIqGrfzzvzZubM+FXtilekQ/FA0cI49/o=", + "lastModified": 1712079060, + "narHash": "sha256-/JdiT9t+zzjChc5qQiF+jhrVhRt8figYH29rZO7pFe4=", "owner": "ryantm", "repo": "agenix", - "rev": "8cb01a0e717311680e0cbca06a76cbceba6f3ed6", + "rev": "1381a759b205dff7a6818733118d02253340fd5e", "type": "github" }, "original": { @@ -40,11 +40,11 @@ ] }, "locked": { - "lastModified": 1711464622, - "narHash": "sha256-P9joXeVMV4FzNy9Y31bnCgKP7xu1Cw+EV8mghAK8N10=", + "lastModified": 1712572393, + "narHash": "sha256-1rh9Avt4prjMhFl4roOxeoA2wrmHQ+4AdETD57Pb6mo=", "ref": "refs/heads/master", - "rev": "d3875adaaa70a52c127f2519a2e86eb4dbcf34b0", - "revCount": 167, + "rev": "c5bdfd91071fb06261c90655ac56ab61a09aa38c", + "revCount": 169, "type": "git", "url": "https://git.aciceri.dev/aciceri/emacs.git" }, @@ -82,11 +82,11 @@ ] }, "locked": { - "lastModified": 1711934712, - "narHash": "sha256-sBDe+QmX/QohlnKeSEzrftcXyZL5FY09OMjZ59Rpyy4=", + "lastModified": 1712612224, + "narHash": "sha256-Tv4C8OSPVmm4LbpJGLFSODyvJy6DqrisEGPCQdNVOeY=", "owner": "nix-community", "repo": "disko", - "rev": "611c9ea53250f7bb22286b3d26872280a0e608f9", + "rev": "79eab0e82cb126bf4ac170f44af82479f0895ab5", "type": "github" }, "original": { @@ -102,11 +102,11 @@ "pyproject-nix": "pyproject-nix" }, "locked": { - "lastModified": 1711684574, - "narHash": "sha256-/7clw2bkbDLzqrToVNPDaqHuijni5VRoB6yqdZdBmhw=", + "lastModified": 1712643040, + "narHash": "sha256-4vkxrZnHulJ8r6lewSr7oHjy0le66CxBRSgGr8WR3qg=", "owner": "nix-community", "repo": "dream2nix", - "rev": "26a6c3a3405cdb2c2218cdc4e1e2bcf7a07af7ba", + "rev": "400032c6303f82b07a09c9784ab5569a51544987", "type": "github" }, "original": { @@ -122,11 +122,11 @@ "nixpkgs-stable": "nixpkgs-stable" }, "locked": { - "lastModified": 1711443855, - "narHash": "sha256-jPEUYELo7ACEiFU7jKDdQ+yC5OkqG2UcHk1/N+N7f3E=", + "lastModified": 1710320774, + "narHash": "sha256-TrLaYznIzUGy4vIRw4hDDlOKuF/vDD1J49cLtkxvgAI=", "owner": "nix-community", "repo": "emacs-overlay", - "rev": "81d4eb044fac45daf51281a046d413a40f05d103", + "rev": "c68aeff603f1b5c4cc7a57b876cf5e7101f2f21c", "type": "github" }, "original": { @@ -170,11 +170,11 @@ "extra-package-combobulate": { "flake": false, "locked": { - "lastModified": 1710138842, - "narHash": "sha256-9Vr5q9z7HmLCxBJW/4/5JAzri/MWB6FNA4BPeV5Ko1s=", + "lastModified": 1710175386, + "narHash": "sha256-rww0/6304xZWTFRo1BVcfSDdXOXtlgmfZOxAoOIjYsk=", "owner": "mickeynp", "repo": "combobulate", - "rev": "f6e092d94ab184b3445fe3d6c0a501f9d7df764a", + "rev": "ee82c568ad639605518f62f82fae4bcc0dfdbb81", "type": "github" }, "original": { @@ -186,11 +186,11 @@ "extra-package-copilot": { "flake": false, "locked": { - "lastModified": 1709987182, - "narHash": "sha256-BLIyJ9z4yI2Iv5eqrmULJ5VXoGnlXSVJx+5lVQyIoO8=", + "lastModified": 1710320315, + "narHash": "sha256-YY/6vODg2MSPMi+61Ii5aQiDQS5B6YPMP1VP1dDNOLs=", "owner": "zerolfx", "repo": "copilot.el", - "rev": "4e203efaa1f4047c800a026ba496d3bda8b67119", + "rev": "57d5e670786ca8156772c6dcb38e6ff67c5efd62", "type": "github" }, "original": { @@ -307,11 +307,11 @@ ] }, "locked": { - "lastModified": 1701473968, - "narHash": "sha256-YcVE5emp1qQ8ieHUnxt1wCZCC3ZfAS+SRRWZ2TMda7E=", + "lastModified": 1709336216, + "narHash": "sha256-Dt/wOWeW6Sqm11Yh+2+t0dfEWxoMxGBvv3JpIocFl9E=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "34fed993f1674c8d06d58b37ce1e0fe5eebcb9f5", + "rev": "f7b3c975cf067e56e7cda6cb098ebe3fb4d74ca2", "type": "github" }, "original": { @@ -552,11 +552,11 @@ "nixpkgs": "nixpkgs_3" }, "locked": { - "lastModified": 1708547820, - "narHash": "sha256-xU/KC1PWqq5zL9dQ9wYhcdgxAwdeF/dJCLPH3PNZEBg=", + "lastModified": 1710309369, + "narHash": "sha256-pQo1vDEEyULfvTQeqZixryrDVpGICzGBtj4uIfP4cs0=", "owner": "hercules-ci", "repo": "hercules-ci-effects", - "rev": "0ca27bd58e4d5be3135a4bef66b582e57abe8f4a", + "rev": "9cc7ed20043adf381f1b8354c54ba667b527d538", "type": "github" }, "original": { @@ -631,11 +631,11 @@ ] }, "locked": { - "lastModified": 1712016346, - "narHash": "sha256-O2nO7pD+krq+4HgkLB4VThRtAucIPfXDs/jJqCGlK1w=", + "lastModified": 1712730572, + "narHash": "sha256-rAVvdP77rEmgobvSgybqPAcHefv5dCXPH/ge6Ds+JtU=", "owner": "nix-community", "repo": "home-manager", - "rev": "4be0464472675212654dedf3e021bd5f1d58b92f", + "rev": "18f89ef74f0d48635488ccd6a5e30dc9d48a3a87", "type": "github" }, "original": { @@ -771,11 +771,11 @@ }, "nixosHardware": { "locked": { - "lastModified": 1711352745, - "narHash": "sha256-luvqik+i3HTvCbXQZgB6uggvEcxI9uae0nmrgtXJ17U=", + "lastModified": 1712739139, + "narHash": "sha256-I8fw3ot29H9TXClIJHmPfQXaq2dEXHs2VmZeMEw7sb4=", "owner": "NixOS", "repo": "nixos-hardware", - "rev": "9a763a7acc4cfbb8603bb0231fec3eda864f81c0", + "rev": "805adee81c82efbe50cac7398c4de05769488ed9", "type": "github" }, "original": { @@ -908,11 +908,11 @@ }, "nixpkgs-stable": { "locked": { - "lastModified": 1711124224, - "narHash": "sha256-l0zlN/3CiodvWDtfBOVxeTwYSRz93muVbXWSpaMjXxM=", + "lastModified": 1710162809, + "narHash": "sha256-i2R2bcnQp+85de67yjgZVvJhd6rRnJbSYNpGmB6Leb8=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "56528ee42526794d413d6f244648aaee4a7b56c0", + "rev": "ddcd7598b2184008c97e6c9c6a21c5f37590b8d2", "type": "github" }, "original": { @@ -924,11 +924,11 @@ }, "nixpkgsStable": { "locked": { - "lastModified": 1711668574, - "narHash": "sha256-u1dfs0ASQIEr1icTVrsKwg2xToIpn7ZXxW3RHfHxshg=", + "lastModified": 1712588820, + "narHash": "sha256-y31s5idk3jMJMAVE4Ud9AdI7HT3CgTAeMTJ0StqKN7Y=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "219951b495fc2eac67b1456824cc1ec1fd2ee659", + "rev": "d272ca50d1f7424fbfcd1e6f1c9e01d92f6da167", "type": "github" }, "original": { @@ -940,11 +940,11 @@ }, "nixpkgsUnstable": { "locked": { - "lastModified": 1711703276, - "narHash": "sha256-iMUFArF0WCatKK6RzfUJknjem0H9m4KgorO/p3Dopkk=", + "lastModified": 1712608508, + "narHash": "sha256-vMZ5603yU0wxgyQeHJryOI+O61yrX2AHwY6LOFyV1gM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "d8fe5e6c92d0d190646fb9f1056741a229980089", + "rev": "4cba8b53da471aea2ab2b0c1f30a81e7c451f4b6", "type": "github" }, "original": { @@ -972,11 +972,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1711163522, - "narHash": "sha256-YN/Ciidm+A0fmJPWlHBGvVkcarYWSC+s3NTPk/P+q3c=", + "lastModified": 1710272261, + "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "44d0940ea560dee511026a53f0e2e2cde489b4d4", + "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", "type": "github" }, "original": { @@ -988,11 +988,11 @@ }, "nixpkgs_3": { "locked": { - "lastModified": 1703637592, - "narHash": "sha256-8MXjxU0RfFfzl57Zy3OfXCITS0qWDNLzlBAdwxGZwfY=", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "cfc3698c31b1fb9cdcf10f36c9643460264d0ca8", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { @@ -1004,11 +1004,11 @@ }, "nixpkgs_4": { "locked": { - "lastModified": 1711624657, - "narHash": "sha256-IViG6BKCJY/I6oRNfAANf/QitYylepQSCzgam0TF+bs=", + "lastModified": 1712482522, + "narHash": "sha256-Ai/xNgZpbwGcw0TSXwEPwwbPi8Iu906sB9M9z3o6UgA=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "72c6ed328aa4e5d9151b1a512f6ad83aca7529fa", + "rev": "efe8ce06ca261f370d672def5b1e0be300c726e1", "type": "github" }, "original": { @@ -1084,11 +1084,11 @@ }, "nur": { "locked": { - "lastModified": 1712062467, - "narHash": "sha256-+wD2/uSdixB6wuemURofkIx1ekN4/qm6UXeDLrlQBpo=", + "lastModified": 1712753744, + "narHash": "sha256-gmw5cWa/+K78CDkx1o5RlwPPgYTRaIhoF5bI4LI6HuQ=", "owner": "nix-community", "repo": "NUR", - "rev": "91edd2127f8365f9e96b37370dcba75b769305fe", + "rev": "72a299e9362607acd61c99c1858d0b4d1e6d2aef", "type": "github" }, "original": { @@ -1142,11 +1142,11 @@ ] }, "locked": { - "lastModified": 1712055707, - "narHash": "sha256-4XLvuSIDZJGS17xEwSrNuJLL7UjDYKGJSbK1WWX2AK8=", + "lastModified": 1712579741, + "narHash": "sha256-igpsH+pa6yFwYOdah3cFciCk8gw+ytniG9quf5f/q84=", "owner": "cachix", "repo": "pre-commit-hooks.nix", - "rev": "e35aed5fda3cc79f88ed7f1795021e559582093a", + "rev": "70f504012f0a132ac33e56988e1028d88a48855c", "type": "github" }, "original": {