;; This is an operating system configuration template for a "Docker image" ;; setup, so it has barely any services at all. (use-modules (gnu)) (operating-system (host-name "komputilo") (timezone "Europe/Berlin") (locale "en_US.utf8") ;; This is where user accounts are specified. The "root" account is ;; implicit, and is initially created with the empty password. (users (cons (user-account (name "alice") (comment "Bob's sister") (group "users") (supplementary-groups '("wheel" "audio" "video"))) %base-user-accounts)) ;; Globally-installed packages. (packages %base-packages) ;; Because the system will run in a Docker container, we may omit many ;; things that would normally be required in an operating system ;; configuration file. These things include: ;; ;; * bootloader ;; * file-systems ;; * services such as mingetty, udevd, slim, networking, dhcp ;; ;; Either these things are simply not required, or Docker provides ;; similar services for us. ;; This will be ignored. (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "does-not-matter"))) ;; This will be ignored, too. (file-systems (list (file-system (device "does-not-matter") (mount-point "/") (type "does-not-matter")))) ;; Guix is all you need! (services (list (service guix-service-type)))) 2b56dc019a049b2f68ce078b243fc313fbaeacf3'/>
path: root/HACKING
AgeCommit message (Expand)Author
2015-06-14doc: Move most 'HACKING' informations into the manual....* HACKING (Contributing): New section. (Building from Git, The Perfect Setup, Coding Style, Submitting Patches): Move to ... * doc/guix.texi (Running Guix Before It Is Installed): Likewise. * doc/contributing.texi: ... here. New file. * doc.am (EXTRA_DIST): Use it. * README (Installation): Adapt to it. * configure.ac (DOT): Likewise. Mathieu Lirzin
2015-06-10doc: Add 'help2man' to HACKING....* HACKING: Mention 'help2man'. Alex Kost
2015-05-23doc: Add "Running Guix Before It Is Installed"....* doc/guix.texi (Running Guix Before It Is Installed): New node. (Packaging Guidelines): Refer to it. Ludovic Courtès
2015-02-26doc: Remove reference to git submodules in HACKING....* HACKING: Remove mention of git submodules. Mark H Weaver
2014-09-03doc: Mention 'guix lint' and '--list-dependent' in 'HACKING'....* HACKING (Submitting Patches): Mention 'guix lint' and 'guix refresh --list-dependent'. Ludovic Courtès
2014-05-11doc: Mention upgrades that trigger a lot of rebuilds....* HACKING (Commit Access): Mention upgrades that trigger a lot rebuilds. Ludovic Courtès
2014-03-10doc: Update packaging guidelines....* HACKING (Submitting Patches): Mention 'git send-mail'. * doc/guix.texi (Packaging Guidelines): More details on how to prepare a package module. (Contributing): Add reference to #guix channel on Freenode. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Pierre-Antoine Rault
2013-12-07doc: Adjust "Building from Git" instructions....* HACKING (Building from Git): As a follow-up to ff1cbb9, update the error reported when pkg.m4 is missing. Suggested by John Darrington <john@darrington.wattle.id.au>. Ludovic Courtès
2013-09-07doc: Add "Data Types and Pattern Matching" to the Coding Style....* HACKING (Data Types and Pattern Matching): New section. Ludovic Courtès
2013-08-30doc: Add note about .dir-locals.el....* HACKING (Coding Style): Mention special indentation rules and .dir-locals.el. Ludovic Courtès
2013-08-30doc: Add a "Coding Style" section in 'HACKING'....* HACKING (Coding Style): New section. Ludovic Courtès
2013-08-30doc: Remove "Adding new packages" from `HACKING'....* HACKING (Adding new packages): Remove since it's now in the manual. Ludovic Courtès