fix formatting

This commit is contained in:
Freya Murphy 2023-10-02 12:29:28 -04:00
parent 3897e1be00
commit b010c08f43
No known key found for this signature in database
GPG key ID: 988032A5638EE799
2 changed files with 19 additions and 20 deletions

View file

@ -57,7 +57,7 @@
;; The list of user accounts ('root' is implicit). ;; The list of user accounts ('root' is implicit).
(users (cons* (user-account (users (cons* (user-account
(name "tylerm") (name "tylerm")
(comment "Tyler") (comment "Tyler Murphy")
(group "users") (group "users")
(home-directory "/home/tylerm") (home-directory "/home/tylerm")
(shell (file-append zsh "/bin/zsh")) (shell (file-append zsh "/bin/zsh"))
@ -187,7 +187,6 @@
(setuid-programs (setuid-programs
(append (list (file-like->setuid-program (append (list (file-like->setuid-program
(file-append (file-append
;;(specification->package "swaylock")
swaylock-effects-new swaylock-effects-new
"/bin/swaylock")) "/bin/swaylock"))
(file-like->setuid-program (file-like->setuid-program

View file

@ -1,9 +1,9 @@
(use-modules (home-config base-system) (use-modules (home-config base-system)
(gnu)) (gnu))
(operating-system (operating-system
(inherit base-operating-system) (inherit base-operating-system)
(host-name "shinji") (host-name "shinji")
(kernel-arguments (append (list "intel_iommu=on") (kernel-arguments (append (list "intel_iommu=on")
%default-kernel-arguments)) %default-kernel-arguments))
@ -11,19 +11,19 @@
(initrd-modules (cons* "vfio_pci" "vfio" "vfio_iommu_type1" (initrd-modules (cons* "vfio_pci" "vfio" "vfio_iommu_type1"
%base-initrd-modules)) %base-initrd-modules))
(mapped-devices (list (mapped-device (mapped-devices (list (mapped-device
(source (uuid (source (uuid
"5c5dcb22-62b1-41af-9116-b8fdfba83ca2")) "5c5dcb22-62b1-41af-9116-b8fdfba83ca2"))
(target "cryptroot") (target "cryptroot")
(type luks-device-mapping)))) (type luks-device-mapping))))
(file-systems (cons* (file-system (file-systems (cons* (file-system
(mount-point "/") (mount-point "/")
(device "/dev/mapper/cryptroot") (device "/dev/mapper/cryptroot")
(type "btrfs") (type "btrfs")
(dependencies mapped-devices)) (dependencies mapped-devices))
(file-system (file-system
(mount-point "/boot/efi") (mount-point "/boot/efi")
(device (uuid "AD5A-4DF3" (device (uuid "AD5A-4DF3"
'fat32)) 'fat32))
(type "vfat")) %base-file-systems))) (type "vfat")) %base-file-systems)))