;;; This is an operating system configuration template for a "bare-bones" setup, ;;; suitable for booting in a virtualized environment, including virtual private ;;; servers (VPS). (use-modules (gnu)) (use-package-modules bootloaders disk nvi) (define vm-image-motd (plain-file "motd" " This is the GNU system. Welcome! This instance of Guix System is a bare-bones template for virtualized environments. You will probably want to do these things first if you booted in a virtual private server (VPS): * Set a password for 'root'. * Set up networking. * Expand the root partition to fill the space available by 0) deleting and recreating the partition with fdisk, 1) reloading the partition table with partprobe, and then 2) resizing the filesystem with resize2fs.\n")) (operating-system (host-name "gnu") (timezone "Etc/UTC") (locale "en_US.utf8") (firmware '()) ;; Assuming /dev/sdX is the target hard disk, and "my-root" is ;; the label of the target root file system. (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "/dev/sda") (terminal-outputs '(console)))) (file-systems (cons (file-system (device (file-system-label "my-root")) (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 %base-user-accounts) ;; Globally-installed packages. (packages (append (list nvi fdisk ;; mostly so xrefs to its manual work grub ;; partprobe parted) %base-packages)) (services (modify-services %base-services (login-service-type config => (login-configuration (inherit config) (motd vm-image-motd)))))) 2bbdc07b9c96f02d819b1cb095da'>root/gnu/services/dns.scm
AgeCommit message (Expand)Author
2021-05-31services: dnsmasq: Extend 'activation-service'....Brice Waegeneire
2021-03-10services: Prevent following symlinks during activation....Maxime Devos
2021-02-11services: knot: Fix configuration verification....Alexey Abramov
2020-10-27services: knot-resolver: Replace deprecated command-line option....Simon South
2020-10-06services: dnsmasq: Add TFTP configuration fields....Danny Milosavljevic
2020-05-08services: Add descriptions....Ludovic Courtès
2020-05-02services: dnsmasq: Support the --address flag....Pierre Langlois
2020-01-22services: knot-resolver: Manage a root TA at /var/cache/knot-resolver....宋文武
2019-11-11services: Add knot-resolver-service-type....宋文武