blob b85593d6c8bc02549c0b2d4942c6936b81a0b428 1900 bytes (raw)
name: gnu/system/examples/bare-bones.tmpl # note: path name is non-authoritative(*)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
| | ;; 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.UTF-8")
;; 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")))
(mapped-devices (list (mapped-device
(source (uuid "cb67fc72-0d54-4c88-9d4b-b225f30b0f44"))
(target "foo")
(type luks-device-mapping))))
(file-systems (cons (file-system
(device "/dev/mapper/foo")
(title 'device)
(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)
(lsh-service #:port-number 2222)
%base-services)))
|
debug log:
solving b85593d ...
found b85593d in https://yhetil.org/guix-bugs/87y47ywyy4.fsf@gnu.org/
found 87e8d1e in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 87e8d1e93c1b235e7a4459749fe97e751f0683ab gnu/system/examples/bare-bones.tmpl
applying [1/1] https://yhetil.org/guix-bugs/87y47ywyy4.fsf@gnu.org/
diff --git a/gnu/system/examples/bare-bones.tmpl b/gnu/system/examples/bare-bones.tmpl
index 87e8d1e..b85593d 100644
Checking patch gnu/system/examples/bare-bones.tmpl...
Applied patch gnu/system/examples/bare-bones.tmpl cleanly.
index at:
100644 b85593d6c8bc02549c0b2d4942c6936b81a0b428 gnu/system/examples/bare-bones.tmpl
(*) Git path names are given by the tree(s) the blob belongs to.
Blobs themselves have no identifier aside from the hash of its contents.^
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).