Advertisement
Guest User

Untitled

a guest
Sep 6th, 2021
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 2.30 KB | None | 0 0
  1. ;; This is an operating system configuration generated
  2. ;; by the graphical installer.
  3.  
  4. (use-modules (gnu)
  5.              (guix packages))
  6. (use-service-modules
  7.   cups
  8.   desktop
  9.   networking
  10.   ssh
  11.   xorg
  12.   syncthing)
  13.  
  14. (operating-system
  15.   (locale "en_US.utf8")
  16.   (timezone "America/New_York")
  17.   (keyboard-layout (keyboard-layout "us"))
  18.   (host-name "hydrogen")
  19.   (users (cons* (user-account
  20.                   (name "tony")
  21.                   (comment "Tony")
  22.                   (group "users")
  23.                   (home-directory "/home/tony")
  24.                   (supplementary-groups
  25.                     '("wheel" "netdev" "audio" "video")))
  26.                 %base-user-accounts))
  27.   (packages
  28.     (append
  29.      (list ;; (specification->package "i3-wm")
  30.            ;; (specification->package "i3status")
  31.            ;; (specification->package "dmenu")
  32.            ;; (specification->package "st")
  33.        (specification->package "emacs")
  34.            ;; (specification->package "emacs-native-comp")
  35.            (specification->package "emacs-exwm")
  36.            (specification->package
  37.              "emacs-desktop-environment")
  38.            (specification->package "nss-certs")
  39.            %base-packages)))
  40.   (services
  41.     (append
  42.       (list (service gnome-desktop-service-type)
  43.             (service tor-service-type)
  44.             (service cups-service-type)
  45.         (service syncthing-service-type
  46.               (syncthing-configuration (user "tony")))
  47.             (set-xorg-configuration
  48.               (xorg-configuration
  49.                 (keyboard-layout keyboard-layout))))
  50.       %desktop-services))
  51.   (bootloader
  52.     (bootloader-configuration
  53.       (bootloader grub-efi-bootloader)
  54.       (target "/boot/efi")
  55.       (keyboard-layout keyboard-layout)))
  56.   (mapped-devices
  57.     (list (mapped-device
  58.             (source
  59.               (uuid "fa795a18-030c-4951-a9d5-c57d2d9604ee"))
  60.             (target "cryptroot")
  61.             (type luks-device-mapping))))
  62.   (file-systems
  63.     (cons* (file-system
  64.              (mount-point "/")
  65.              (device "/dev/mapper/cryptroot")
  66.              (type "btrfs")
  67.              (dependencies mapped-devices))
  68.            (file-system
  69.              (mount-point "/boot/efi")
  70.              (device (uuid "610D-C2ED" 'fat32))
  71.              (type "vfat"))
  72.            %base-file-systems)))
  73.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement