Fixer neon

Signed-off-by: Skylar "The Cobra" Widulski <cobra@vern.cc>
This commit is contained in:
Skylar "The Cobra" Widulski 2023-06-05 01:24:17 -04:00
parent e20cc0b9d6
commit e3ef5afadf
Signed by: cobra
GPG Key ID: 4FD8F812083FF6F9
2 changed files with 25 additions and 2 deletions

View File

@ -1,3 +1,25 @@
(add-to-load-path "/etc/guix-config")
(use-modules (cobra os))
%thinkpad:t60
(use-modules (gnu) (cobra os))
(operating-system
(inherit %thinkpad)
(host-name "Neon")
(mapped-devices (list
(mapped-device
(source (uuid "72cd3842-a6e5-4fb5-b994-1ce11d2d0a16"))
(target "fde")
(type luks-device-mapping))
(mapped-device
(source "matrix")
(targets (list "matrix-rootvol"))
(type lvm-device-mapping))))
(file-systems (append (list
(file-system
(type "btrfs")
(mount-point "/")
(device (file-system-label "root"))
(flags '(no-atime))
(options "space_cache=v2")
(needed-for-boot? #t)
(dependencies mapped-devices)))
%base-file-systems)))

1
tmp Normal file
View File

@ -0,0 +1 @@
72cd3842-a6e5-4fb5-b994-1ce11d2d0a16