diff options
| author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2026-04-20 22:45:24 +0200 |
|---|---|---|
| committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2026-04-20 22:45:24 +0200 |
| commit | 84ca51a7aa53c8acea611e3d66a16b55cd6d10af (patch) | |
| tree | d8896b04d628cdb2bca414d6254d3151091c2b97 | |
| parent | c442e3dbf5b8751df0034ebef5d6a9f643480b64 (diff) | |
(system): rename guix signing key file definitions to prepare module movement
| -rw-r--r-- | deployment/keys.scm | 16 | ||||
| -rw-r--r-- | deployment/system/aisaka.scm | 4 | ||||
| -rw-r--r-- | deployment/system/akashi.scm | 2 | ||||
| -rw-r--r-- | deployment/system/mcdowell.scm | 2 | ||||
| -rw-r--r-- | deployment/system/rakan.scm | 2 |
5 files changed, 13 insertions, 13 deletions
diff --git a/deployment/keys.scm b/deployment/keys.scm index fc7d426..81dee8f 100644 --- a/deployment/keys.scm +++ b/deployment/keys.scm @@ -4,29 +4,29 @@ (define-module (deployment keys) #:use-module (guix gexp)) -(define-public aisaka-guix - (mixed-text-file "aisaka-signing-key.pub" +(define-public aisaka-guix-key + (mixed-text-file "aisaka-guix-key.pub" "(public-key\n" " (ecc\n" " (curve Ed25519)\n" " (q #983CD313090D2699AD26AE5CB589A29F24A32E247A41EB4F4A22D196DFCD9D3C#)))")) -(define-public akashi-guix - (mixed-text-file "akashi-signing-key.pub" +(define-public akashi-guix-key + (mixed-text-file "akashi-guix-key.pub" "(public-key\n" " (ecc\n" " (curve Ed25519)\n" " (q #A3E347D0D79D616C4379C844C1D67DFC9BFD4F2011D4070EB3DB7EFA66D6F3D2#)))")) -(define-public mcdowell-guix - (mixed-text-file "mcdowell-signing-key.pub" +(define-public mcdowell-guix-key + (mixed-text-file "mcdowell-guix-key.pub" "(public-key\n" " (ecc\n" " (curve Ed25519)\n" " (q #FDA720ED167E05AB735182D887A450DCD534A85F2697DE421E49CA043FC01E4D#)))")) -(define-public rakan-guix - (mixed-text-file "rakan-signing-key.pub" +(define-public rakan-guix-key + (mixed-text-file "rakan-guix-key.pub" "(public-key\n" " (ecc\n" " (curve Ed25519)\n" diff --git a/deployment/system/aisaka.scm b/deployment/system/aisaka.scm index 192982a..2b15422 100644 --- a/deployment/system/aisaka.scm +++ b/deployment/system/aisaka.scm @@ -539,8 +539,8 @@ (define guix-offload-rakan (gnu:services:base:guix-extension - (authorized-keys (list deployment:keys:akashi-guix - deployment:keys:rakan-guix)) + (authorized-keys (list deployment:keys:akashi-guix-key + deployment:keys:rakan-guix-key)) (build-machines (list rakan-machine)))) (define-public offload-rakan diff --git a/deployment/system/akashi.scm b/deployment/system/akashi.scm index 3b58940..c474ca7 100644 --- a/deployment/system/akashi.scm +++ b/deployment/system/akashi.scm @@ -64,7 +64,7 @@ (define guix-offload-targets (gnu:services:base:guix-extension - (authorized-keys (list deployment:keys:aisaka-guix)) + (authorized-keys (list deployment:keys:aisaka-guix-key)) (build-machines (list offload-hub)))) (define offload-extension diff --git a/deployment/system/mcdowell.scm b/deployment/system/mcdowell.scm index b38aea8..6de9250 100644 --- a/deployment/system/mcdowell.scm +++ b/deployment/system/mcdowell.scm @@ -76,7 +76,7 @@ (define guix-offload-rakan (gnu:services:base:guix-extension - (authorized-keys (list deployment:keys:rakan-guix)) + (authorized-keys (list deployment:keys:rakan-guix-key)) (build-machines (list rakan-machine)))) (define-public system diff --git a/deployment/system/rakan.scm b/deployment/system/rakan.scm index 9e9d77c..7d5863c 100644 --- a/deployment/system/rakan.scm +++ b/deployment/system/rakan.scm @@ -89,7 +89,7 @@ (define guix-offload-authorizations (gnu:services:base:guix-extension - (authorized-keys (list deployment:keys:aisaka-guix)))) + (authorized-keys (list deployment:keys:aisaka-guix-key)))) (define (l2md-maildir name) (string-append "~/Publiczne/l2md/" |
