;; This is an operating system configuration template ;; for a "bare bones" setup, with no X11 display server. (use-modules (gnu)) (use-service-modules networking ssh) (use-package-modules admin) (operating-system (host-name "komputilo") (timezone "Europe/Berlin") (locale "en_US.utf8") ;; Assuming /dev/sdX is the target hard disk, and "my-root" is ;; the label of the target root file system. (bootloader (grub-configuration (device "/dev/sdX"))) (file-systems (cons (file-system (device "my-root") (title 'label) (mount-point "/") (type "ext4")) %base-file-systems)) ;; 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") ;; Adding the account to the "wheel" group ;; makes it a sudoer. Adding it to "audio" ;; and "video" allows the user to play sound ;; and access the webcam. (supplementary-groups '("wheel" "audio" "video")) (home-directory "/home/alice")) %base-user-accounts)) ;; Globally-installed packages. (packages (cons tcpdump %base-packages)) ;; Add services to the baseline: a DHCP client and ;; an SSH server. (services (cons* (dhcp-client-service) (service openssh-service-type (openssh-configuration (port-number 2222))) %base-services))) on>
path: root/etc/init.d
s='left'>Age
AgeCommit message (Expand)Author
Commit message (Expand)Author
2024-06-24gnu: rawtherapee: Update to 5.10....* gnu/packages/photo.scm (rawtherapee): Update to 5.10. [inputs]: Add exiv2. Change-Id: Ic97f77cfde1db4784500f49f90e9ffed1d8137b5 Sharlatan Hellseher
2024-05-21gnu: enblend-enfuse: Build with librsvg-for-system....* gnu/packages/photo.scm (enblend-enfuse)[native-inputs]: Replace librsvg with librsvg-for-system. Change-Id: I04e046191abf1e36cdbb42d50a5c5abab029edf1 Efraim Flashner
2024-03-09gnu: darktable: Update to 4.6.1....* gnu/packages/photo.scm (darktable): Update to 4.6.1. Change-Id: I2642b78036205c97c8183349fc809fcfec78f866 Signed-off-by: 宋文武 <iyzsong@member.fsf.org> Alex Devaure
2024-01-19gnu: darktable: Update to 4.6.0....* gnu/packages/photo.scm (darktable): Update to 4.6.0. Change-Id: Ic64b02e8d191ba91fde1b95b9bcb4321a471dcba Vinicius Monego
2024-01-19gnu: darktable: Enable more optional features....* gnu/packages/photo.scm (darktable)[inputs]: Add libjxl, portmidi. Change-Id: I7747dfc2e88379a13182590f87514951bdd70e0c Vinicius Monego
2024-01-19gnu: darktable: Build with GCC....* gnu/packages/photo.scm (darktable)[arguments][#:phases]: Delete the 'prepare-build-environment phase. [native-inputs]: Remove clang. Add gcc-13. Change-Id: Ia0dc1c6a717ccd00cd31d378aa51ce63fbf1806a Vinicius Monego
2024-01-17gnu: perl-image-exiftool: Update to 12.70....* gnu/packages/photo.scm (perl-image-exiftool): Update to 12.70. Change-Id: If8e26b7e92cb530391cdd1dd12e78b371494a6b3 kiasoc5