Paste number 304687: | config.scm |
Pasted by: | d4n1 |
When: | 6 years, 7 months ago |
Share: | Tweet this! | http://paste.lisp.org/+6J3J |
Channel: | None |
Paste contents: |
(use-modules (gnu) (gnu system nss))
(use-service-modules desktop)
(use-package-modules gnome certs)
(operating-system
(host-name "gnu")
(timezone "America/Maceio")
(locale "en_US.UTF-8")
;; Assuming /dev/sdX is the target hard disk, and "root" is
;; the label of the target root file system.
(bootloader (grub-configuration (device "/dev/sda")))
(file-systems (cons (file-system
(device "root")
(title 'label)
(mount-point "/")
(type "ext4"))
(cons (file-system
(device "home")
(title 'label)
(mount-point "/home")
(type "ext4"))
%base-file-systems)))
(swap-devices '("/dev/sda3"))
(users (cons (user-account
(name "dani")
(comment "d4n1")
(group "users")
(supplementary-groups '("wheel" "netdev"
"audio" "video"))
(home-directory "/home/dani"))
%base-user-accounts))
;; Add Xfce and Ratpoison; that allows us to choose
;; sessions using either of these at the log-in screen.
(packages (cons* adwaita-icon-theme
gnome-session
gnome-shell
gnome-control-center
gnome-settings-daemon
nss-certs
%base-packages))
;; Use the "desktop" services, which include the X11
;; log-in service, networking with Wicd, and more.
(services %desktop-services)
;; Allow resolution of '.local' host names with mDNS.
(name-service-switch %mdns-host-lookup-nss))
This paste has no annotations.