Advertisement
Guest User

config.scm

a guest
Jan 7th, 2016
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 1.80 KB | None | 0 0
  1. (use-modules (gnu) (gnu system nss))
  2. (use-service-modules desktop)
  3. (use-package-modules gnome certs)
  4.  
  5. (operating-system
  6.   (host-name "gnu")
  7.   (timezone "America/Maceio")
  8.   (locale "en_US.UTF-8")
  9.  
  10.   ;; Assuming /dev/sdX is the target hard disk, and "root" is
  11.   ;; the label of the target root file system.
  12.   (bootloader (grub-configuration (device "/dev/sda")))
  13.   (file-systems (cons (file-system
  14.                         (device "root")
  15.                         (title 'label)
  16.                         (mount-point "/")
  17.                         (type "ext4"))
  18.                       (cons (file-system
  19.                               (device "home")
  20.                               (title 'label)
  21.                               (mount-point "/home")
  22.                               (type "ext4"))
  23.                             %base-file-systems)))
  24.   (swap-devices '("/dev/sda3"))
  25.  
  26.   (users (cons (user-account
  27.                 (name "dani")
  28.                 (comment "d4n1")
  29.                 (group "users")
  30.                 (supplementary-groups '("wheel" "netdev"
  31.                                         "audio" "video"))
  32.                 (home-directory "/home/dani"))
  33.                %base-user-accounts))
  34.  
  35.   ;; Add Xfce and Ratpoison; that allows us to choose
  36.   ;; sessions using either of these at the log-in screen.
  37.   (packages (cons* adwaita-icon-theme
  38.                    gnome-session
  39.                    gnome-shell
  40.                    gnome-control-center
  41.                    gnome-settings-daemon
  42.                    nss-certs
  43.                    %base-packages))
  44.  
  45.   ;; Use the "desktop" services, which include the X11
  46.   ;; log-in service, networking with Wicd, and more.
  47.   (services %desktop-services)
  48.  
  49.   ;; Allow resolution of '.local' host names with mDNS.
  50.   (name-service-switch %mdns-host-lookup-nss))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement