Add Xenon

Signed-off-by: Skylar "The Cobra" Widulski <cobra@vern.cc>
This commit is contained in:
Skylar "The Cobra" Widulski 2024-01-26 17:58:51 -05:00
parent 3d3ca36648
commit 25a403f948
Signed by: cobra
GPG Key ID: 4FD8F812083FF6F9
1 changed files with 25 additions and 0 deletions

25
etc/guix-config/xenon.scm Normal file
View File

@ -0,0 +1,25 @@
(add-to-load-path (dirname (current-filename)))
(use-modules (gnu) (cobra os))
(operating-system
(inherit %base-guix-system)
(host-name "Xenon")
(mapped-devices (list
(mapped-device
(source (uuid "7f14752f-0802-414c-bc2a-7b82ebda1444"))
(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)))