On 2017-06-28 03:07 +03, Göktuğ Kayaalp <[email protected]> wrote:
I've attached inline, sorry
This is the user manifest.
> ;; Guix user
>
> (use-package-modules admin aspell autotools base curl dns emacs gimp gnupg
> gnuzilla image-viewers libreoffice linux lisp mail python
[...]
This the OS. This and the previous are separate files.
> ;; Goktug's Operating System
>
> (use-modules (gnu))
> (use-service-modules desktop networking ssh)
> (use-package-modules admin certs dns)
>
> (operating-system
> (host-name "xi.bootis")
> (timezone "Europe/Istanbul")
> (locale "en_GB.utf8")
>
> (bootloader (grub-configuration (device "/dev/sda")))
> (swap-devices '("/dev/sda2"))
> (file-systems
> (cons*
> (file-system
> (device "/dev/sda1") (mount-point "/") (type "ext4")
> (needed-for-boot? #t))
> (file-system
> (device "/dev/sda5") (mount-point "/home") (type "ext4"))
> (file-system
> (device "/dev/sda6") (mount-point "/igk") (type "ext4")
> (create-mount-point? #t))
> %base-file-systems))
This file system layout is not the actual layout I used, I've changed
it, but the rest is identical to the current system I use.