diff options
Diffstat (limited to 'system-configuration.scm')
-rw-r--r-- | system-configuration.scm | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/system-configuration.scm b/system-configuration.scm new file mode 100644 index 0000000..59a7b48 --- /dev/null +++ b/system-configuration.scm @@ -0,0 +1,67 @@ +;; This is an operating system configuration generated +;; by the graphical installer. + +(use-modules + (gnu)) + +(use-service-modules cups desktop networking ssh xorg) + +(operating-system + (kernel + (specification->package "linux-libre@5.10")) + (locale "pl_PL.utf8") + (timezone "Europe/Warsaw") + (keyboard-layout (keyboard-layout "pl")) + (host-name "aisaka") + (users (cons* (user-account + (name "marek") + (comment "Marek Paśnikowski") + (group "users") + (home-directory "/home/marek") + (supplementary-groups + '("wheel" "netdev" "audio" "video"))) + %base-user-accounts)) + (packages + (append + (map + (compose list specification->package+output) + (list "nss-certs" "trezord" "trezord-udev-rules")) + %base-packages)) + (services + (append + (list (service gnome-desktop-service-type) + (service openssh-service-type) + (service tor-service-type) + (service cups-service-type) + (set-xorg-configuration + (xorg-configuration + (keyboard-layout keyboard-layout)))) + %desktop-services)) + (bootloader + (bootloader-configuration + (bootloader grub-bootloader) + (targets (list "/dev/sda")) + (keyboard-layout keyboard-layout))) + (swap-devices + (list (swap-space + (target + (uuid "73bed3f9-be07-40ad-a228-577cd24f2e1d"))))) + (mapped-devices + (list (mapped-device + (source + (uuid "887ac37f-2919-41a0-a62a-e1ff5ea2d6cc")) + (target "aisaka-root") + (type luks-device-mapping)))) + (file-systems + (cons* (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" + 'ext4)) + (type "ext4")) + %base-file-systems))) |