diff options
author | Ryan Schanzenbacher <ryan@rschanz.org> | 2023-09-15 17:00:17 -0400 |
---|---|---|
committer | Ryan Schanzenbacher <ryan@rschanz.org> | 2023-09-15 17:00:17 -0400 |
commit | a3a44f9054c186ed519bd01bcf184094fa6aa139 (patch) | |
tree | 8ecadb1b40baef460fa592ca1ccb9fb8efb01a52 /modules/ryan-config/deploy-templates/HostTemplate | |
parent | 297ef48f8e8bb5f50a16f9074b54bec6827eec6d (diff) |
some deploy.sh changes
Diffstat (limited to 'modules/ryan-config/deploy-templates/HostTemplate')
-rw-r--r-- | modules/ryan-config/deploy-templates/HostTemplate | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/ryan-config/deploy-templates/HostTemplate b/modules/ryan-config/deploy-templates/HostTemplate new file mode 100644 index 0000000..9718c51 --- /dev/null +++ b/modules/ryan-config/deploy-templates/HostTemplate | |||
@@ -0,0 +1,19 @@ | |||
1 | (use-modules (ryan-config base-system) | ||
2 | (gnu)) | ||
3 | |||
4 | (operating-system | ||
5 | (inherit base-operating-system) | ||
6 | (host-name "ChangeMe_HOST") | ||
7 | (file-systems (cons* (file-system | ||
8 | (mount-point "/") | ||
9 | (device (uuid "ChangeMe_ROOT" | ||
10 | 'ext4)) | ||
11 | (type "ext4")) | ||
12 | (file-system | ||
13 | (mount-point "/boot/efi") | ||
14 | (device (uuid "ChangeMe_BOOTEFI" | ||
15 | 'fat32)) | ||
16 | (type "vfat")) %base-file-systems)) | ||
17 | (swap-devices | ||
18 | (list | ||
19 | (swap-space (target (uuid "ChangeMe_SWAP")))))) | ||