summaryrefslogtreecommitdiff
path: root/shinji.scm
diff options
context:
space:
mode:
authorTyler Murphy <tylerm@tylerm.dev>2023-10-02 12:29:28 -0400
committerTyler Murphy <tylerm@tylerm.dev>2023-10-02 12:29:28 -0400
commitb010c08f43f918ef6510eba2305d0c53f0fc3c17 (patch)
tree9fdc6ff20e498349a71f7f2cddab90b26d8919f9 /shinji.scm
parentupdate readme (diff)
downloaddotfiles-guix-b010c08f43f918ef6510eba2305d0c53f0fc3c17.tar.gz
dotfiles-guix-b010c08f43f918ef6510eba2305d0c53f0fc3c17.tar.bz2
dotfiles-guix-b010c08f43f918ef6510eba2305d0c53f0fc3c17.zip
fix formatting
Diffstat (limited to 'shinji.scm')
-rw-r--r--shinji.scm36
1 files changed, 18 insertions, 18 deletions
diff --git a/shinji.scm b/shinji.scm
index bad5533..4135663 100644
--- a/shinji.scm
+++ b/shinji.scm
@@ -1,9 +1,9 @@
(use-modules (home-config base-system)
- (gnu))
+ (gnu))
(operating-system
- (inherit base-operating-system)
- (host-name "shinji")
+ (inherit base-operating-system)
+ (host-name "shinji")
(kernel-arguments (append (list "intel_iommu=on")
%default-kernel-arguments))
@@ -11,19 +11,19 @@
(initrd-modules (cons* "vfio_pci" "vfio" "vfio_iommu_type1"
%base-initrd-modules))
- (mapped-devices (list (mapped-device
- (source (uuid
- "5c5dcb22-62b1-41af-9116-b8fdfba83ca2"))
- (target "cryptroot")
- (type luks-device-mapping))))
+ (mapped-devices (list (mapped-device
+ (source (uuid
+ "5c5dcb22-62b1-41af-9116-b8fdfba83ca2"))
+ (target "cryptroot")
+ (type luks-device-mapping))))
- (file-systems (cons* (file-system
- (mount-point "/")
- (device "/dev/mapper/cryptroot")
- (type "btrfs")
- (dependencies mapped-devices))
- (file-system
- (mount-point "/boot/efi")
- (device (uuid "AD5A-4DF3"
- 'fat32))
- (type "vfat")) %base-file-systems)))
+ (file-systems (cons* (file-system
+ (mount-point "/")
+ (device "/dev/mapper/cryptroot")
+ (type "btrfs")
+ (dependencies mapped-devices))
+ (file-system
+ (mount-point "/boot/efi")
+ (device (uuid "AD5A-4DF3"
+ 'fat32))
+ (type "vfat")) %base-file-systems)))