summaryrefslogtreecommitdiff
path: root/shinji.scm
diff options
context:
space:
mode:
authorTyler Murphy <tylerm@tylerm.dev>2023-09-04 23:21:01 -0400
committerTyler Murphy <tylerm@tylerm.dev>2023-09-04 23:21:01 -0400
commitdb49f683129771d95828b01594c69431a717e8e8 (patch)
treed2cb1c0b865e4d81ce81f9a3176b8ad93a864950 /shinji.scm
downloaddotfiles-guix-db49f683129771d95828b01594c69431a717e8e8.tar.gz
dotfiles-guix-db49f683129771d95828b01594c69431a717e8e8.tar.bz2
dotfiles-guix-db49f683129771d95828b01594c69431a717e8e8.zip
guix
Diffstat (limited to 'shinji.scm')
-rw-r--r--shinji.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/shinji.scm b/shinji.scm
new file mode 100644
index 0000000..cf71c9e
--- /dev/null
+++ b/shinji.scm
@@ -0,0 +1,23 @@
+(use-modules (home-config base-system)
+ (gnu))
+
+(operating-system
+ (inherit base-operating-system)
+ (host-name "shinji")
+
+ (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)))