diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2023-02-03 19:01:23 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2023-02-03 19:01:23 +0100 |
commit | 3ecfc1b9ce5f6cb5a9c9310427bde13bede7ab20 (patch) | |
tree | 9afd937b8208f99cedafa342c74db824cd71c880 /system-configuration.scm | |
parent | afd5151a69439b53ef5e8c17817186addaf61705 (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")))))) |