diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-11-20 05:51:30 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-11-20 05:51:30 +0100 |
commit | 3b01c68fc225cfc6b0d76cb25e65a5cc91fbb2cd (patch) | |
tree | 7e099e759fd8b1747532f9b0eee338862dd1f30e | |
parent | debd2aea3d6bb4466b8efe73a456ff5aaa2b5292 (diff) |
refactor(ayase): modrnize (gnu system uuid) use
-rw-r--r-- | systems/ayase.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/systems/ayase.scm b/systems/ayase.scm index faf0257..e248242 100644 --- a/systems/ayase.scm +++ b/systems/ayase.scm @@ -4,6 +4,8 @@ (define-module (systems ayase) #:use-module ((gnu system) #:prefix gnu:system:) + #:use-module ((gnu system uuid) + #:prefix gnu:system:uuid:) #:use-module ((nongnu packages linux) #:prefix nongnu:packages:linux:) #:use-module ((nongnu system linux-initrd) @@ -18,7 +20,7 @@ #:prefix users:id1000:)) (define efi-filesystem-uuid - ((@ (gnu system uuid) uuid) + (gnu:system:uuid:uuid "B4FB-CBD9" 'fat32)) @@ -32,7 +34,7 @@ number))) (define root-filesystem-uuid - ((@ (gnu system file-systems) uuid) + (gnu:system:uuid:uuid "615a98cd-a632-4ee5-a6f4-e5ebcaa6fb8c")) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |