tbh it was just for the funny

Signed-off-by: Skylar "The Cobra" Widulski <cobra@vern.cc>
This commit is contained in:
Skylar "The Cobra" Widulski 2023-06-05 00:40:53 -04:00
parent 061e26dd87
commit 6dea4defb7
Signed by: cobra
GPG Key ID: 4FD8F812083FF6F9
2 changed files with 12 additions and 12 deletions

View File

@ -7,8 +7,9 @@
#:use-module (guix gexp)
#:use-module (cobra packages)
#:use-module (cobra lists)
#:export (%thinkpad:t500
%thinkpad:t60))
#:export (%thinkpad
%devmap:fde
%devmap:matrix))
(define sudoers
(plain-file "sudoers" "\
@ -87,14 +88,6 @@ Defaults!WITHOUTPW !authenticate
(services service-list)
(sudoers-file sudoers)))
(define %thinkpad:t500
(operating-system
(inherit %thinkpad)
(host-name "Oganesson")
(mapped-devices (list
(mapped-device (inherit %devmap:fde)
(source (uuid "e836ef6e-97a8-442b-a025-e81ab58bbc04")))
%devmap:matrix))))
(define %thinkpad:t60
(operating-system
(inherit %thinkpad)

View File

@ -1,3 +1,10 @@
(add-to-load-path "/etc/guix-config")
(use-modules (cobra os))
%thinkpad:t500
(use-modules (gnu) (cobra os))
(operating-system
(inherit %thinkpad)
(host-name "Oganesson")
(mapped-devices (list
(mapped-device (inherit %devmap:fde)
(source (uuid "e836ef6e-97a8-442b-a025-e81ab58bbc04")))
%devmap:matrix)))