diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2023-02-03 19:01:23 +0100 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2023-02-03 19:01:23 +0100 |
commit | 59fb902373e90a5279a26e9dd4753767e17c8fe5 (patch) | |
tree | 0fd3038ddb7d91146904430826709add1a92aaf0 /system-configuration.scm | |
parent | cd88b908c4f995579ebf36a8bc8196dad2370eb2 (diff) |
Fix Indentation Issue
Diffstat (limited to 'system-configuration.scm')
-rw-r--r-- | system-configuration.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/system-configuration.scm b/system-configuration.scm index 522b4d9..28d4dbc 100644 --- a/system-configuration.scm +++ b/system-configuration.scm @@ -73,12 +73,12 @@ (file-systems (append %base-file-systems (list - (file-system - (mount-point "/") - (device "/dev/mapper/aisaka-root") - (type "btrfs") - (dependencies mapped-devices)) - (file-system - (mount-point "/boot") - (device (uuid "4f77b5fc-56ad-43ae-b6ec-e5adc8c48587")) - (type "ext4")))))) + (file-system + (mount-point "/") + (device "/dev/mapper/aisaka-root") + (type "btrfs") + (dependencies mapped-devices)) + (file-system + (mount-point "/boot") + (device (uuid "4f77b5fc-56ad-43ae-b6ec-e5adc8c48587")) + (type "ext4")))))) |