;; 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)))) method='get' action='/guix/log/gnu/system/shadow.scm'>
path: root/gnu/system/shadow.scm
AgeCommit message (Expand)Author
2020-08-25Remove "guile-zlib" extension when unused....Mathieu Othacehe
2020-08-25linux-libre: Support module compression....Mathieu Othacehe
2020-05-08services: Add descriptions....Ludovic Courtès
2020-04-17services: account: Have 'user-processes' depend on 'user-homes'....Ludovic Courtès
2020-04-01system: Move nanorc to XDG_CONFIG_HOME....Efraim Flashner
2020-03-30Revert "system: Move nanorc to XDG_CONFIG_HOME."...Leo Famulari
2020-03-30system: Move nanorc to XDG_CONFIG_HOME....Efraim Flashner
2020-03-19gnu: system: Remove guile-wm from skeleton....Jan Nieuwenhuizen
2019-04-23services: account: Make 'user-homes' a one-shot service....Ludovic Courtès