The old 'target' field is deprecated; adjust the sources to use the new 'targets' one instead. * doc/guix-cookbook.texi<target>: Replace by 'targets'. * gnu/bootloader/grub.scm: Likewise. * gnu/installer/parted.scm: Likewise. * gnu/machine/digital-ocean.scm: Likewise. * gnu/system/examples/asus-c201.tmpl: Likewise * gnu/system/examples/bare-bones.tmpl: Likewise * gnu/system/examples/bare-hurd.tmpl: Likewise * gnu/system/examples/beaglebone-black.tmpl: Likewise * gnu/system/examples/desktop.tmpl: Likewise * gnu/system/examples/docker-image.tmpl: Likewise * gnu/system/examples/lightweight-desktop.tmpl: Likewise * gnu/system/examples/vm-image.tmpl: Likewise * gnu/system/examples/yggdrasil.tmpl: Likewise * gnu/system/hurd.scm: Likewise * gnu/system/images/hurd.scm: Likewise * gnu/system/images/novena.scm: Likewise * gnu/system/images/pine64.scm: Likewise * gnu/system/images/pinebook-pro.scm: Likewise * gnu/system/images/rock64.scm: Likewise * gnu/system/install.scm: Likewise * gnu/system/vm.scm: Likewise * gnu/tests.scm: Likewise * gnu/tests/ganeti.scm: Likewise * gnu/tests/install.scm: Likewise * gnu/tests/nfs.scm: Likewise * gnu/tests/telephony.scm: Likewise * tests/boot-parameters.scm: Likewise * tests/system.scm: Likewise
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
| ;; 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)
 | |
|                (targets '("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))))
 |