aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/examples/bare-bones.tmpl
blob: 889dcabe6450af9b266b0c39097b5d4cd2eac4ee (about) (plain)
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 screen ssh)

(operating-system
  (host-name "komputilo")
  (timezone "Europe/Berlin")
  (locale "en_US.utf8")

  ;; Boot in "legacy" BIOS mode, 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/sdX")))
  (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 (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* screen openssh %base-packages))

  ;; Add services to the baseline: a DHCP client and
  ;; an SSH server.
  (services (cons* (service dhcp-client-service-type)
                   (service openssh-service-type
                            (openssh-configuration
                              (port-number 2222)))
                   %base-services)))
>Maxim Cournoyer 2022-10-03gnu: gf2x: Migrate from gforge.inria.fr to gitlab.inria.fr....* gnu/packages/algebra.scm (gf2x) [source]: Fetch from git, adjust URL. [native-inputs]: Add autoconf, automake and libtool. [home-site]: Update URL. Maxim Cournoyer 2022-09-21gnu: gp2c: Update to 0.0.13....* gnu/packages/algebra.scm (gp2c): Update to 0.0.13. Andreas Enge 2022-09-21gnu: pari-gp: Update to 2.15.0....* gnu/packages/algebra.scm (pari-gp): Update to 2.15.0. Modernize syntax. Andreas Enge 2022-09-12gnu: cmh: Update to 1.1.1....* gnu/packages/algebra.scm (cmh): Update to 1.1.1. * gnu/packages/patches/cmh-support-fplll.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. Signed-off-by: Andreas Enge <andreas@enge.fr> Hendursaga 2022-09-08gnu: eigen: Skip some tests on some architectures....* gnu/packages/algebra.scm (eigen)[arguments]: Add a phase to skip some tests which fail on various platforms. (eigen-for-tensorflow, eigen-for-tensorflow-lite)[arguments]: Don't inherit new phase. Efraim Flashner 2022-09-06gnu: giac: Update to 1.9.0-21....* gnu/packages/algebra.scm (giac): Update to 1.9.0-21. Nicolas Goaziou 2022-08-12gnu: lrcalc: Update to 2.1....* gnu/packages/algebra.scm (lrcalc): Update to 2.1. [source]: Remove patch. * gnu/packages/patches/lrcalc-includes.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Unregister file. Signed-off-by: Andreas Enge <andreas@enge.fr> vicvbcun 2022-08-11gnu: gap: Enable compilation of more optional packages....* gnu/packages/algebra.scm (gap)<snippet>: Add to the whitelist GAP packages with free licenses clarified in the latest release, and which do not require additional inputs. Andreas Enge 2022-08-11gnu: gap: Update to 4.11.1....* gnu/packages/algebra.scm (gap): Update to 4.11.1. [source]<snippet>: Remove trailing #t. [arguments]<phases>: Remove trailing #t. Install missing config.h header. Co-authored-by: vicvbcun <guix@ikherbers.com> Andreas Enge 2022-08-08gnu: symengine: Update to 0.9.0....* gnu/packages/algebra.scm (symengine): Update to 0.9.0. Andreas Enge 2022-08-08gnu: arb: Update to 2.23.0....* gnu/packages/algebra.scm (arb): Update to 2.23.0. Andreas Enge 2022-08-08gnu: flint: Update to 2.9.0....* gnu/packages/algebra.scm (flint): Update to 2.9.0. Andreas Enge 2022-08-08gnu: ntl: Update to 11.5.1....* gnu/packages/algebra.scm (ntl): Update to 11.5.1. Signed-off-by: Andreas Enge <andreas@enge.fr> vicvbcun 2022-08-08gnu: eclib: Update to 20220621....* gnu/packages/algebra.scm (eclib): Update to 20220621. Signed-off-by: Andreas Enge <andreas@enge.fr> vicvbcun 2022-07-23gnu: eigen: Update to 3.4.0....* gnu/packages/algebra.scm (eigen): Update to 3.4.0. * gnu/packages/patches/eigen-fix-strict-aliasing-bug.patch: New file. * gnu/packages/patches/eigen-remove-openmp-error-counting.patch, gnu/packages/patches/eigen-stabilise-sparseqr-test.patch: Delete files. * gnu/local.mk (dist_patch_DATA): Update accordingly. Signed-off-by: Ludovic Courtès <ludo@gnu.org> vicvbcun 2022-07-15gnu: giac: Update to 1.9.0-19....* gnu/packages/algebra.scm (giac): Update to 1.9.0-19. Nicolas Goaziou 2022-06-21gnu: cmh: Add patch to work with current fplll....* gnu/packages/patches/cmh-support-fplll.patch: New file. * gnu/packages/algebra.scm (cmh)[source]: Add patch. * gnu/local.mk (dist_patch_DATA): Register patch. Andreas Enge 2022-06-17gnu: pari-gp: Enable pthreads....* gnu/packages/algebra.scm (pari-gp): Add --mt=pthread to configure flags. Andreas Enge 2022-06-15gnu: eigen: Honor the #:tests? flag....* gnu/packages/algebra.scm (eigen)[arguments]: Adjust the custom 'check phase to honor the #:tests? flag. Efraim Flashner 2022-06-13gnu: sollya: Update to 8.0....* gnu/packages/algebra.scm (sollya): Update to 8.0. Andreas Enge 2022-06-13gnu: python-fpylll: Update to 0.5.7....* gnu/packages/algebra.scm (python-fpylll): Update to 0.5.7. [source]: Revert from git to pypi. Andreas Enge 2022-06-13gnu: fplll: Update to 5.4.2....* gnu/packages/algebra.scm (fplll): Update to 5.4.2. [source]: Remove patch; for unknown reasons the package now compiles without it. * gnu/packages/patches/fplll-std-fenv.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Unregister patch. Andreas Enge 2022-05-05gnu: cm: Update to 0.4.0....* gnu/packages/algebra.scm (cm): Update to 0.4.0. Andreas Enge 2022-04-19gnu: arb: Update to 2.22.1....* gnu/packages/algebra.scm (arb): Update to 2.22.1. Andreas Enge 2022-04-19gnu: pari-gp: Update to 2.13.4....* gnu/packages/algebra.scm (pari-gp): Update to 2.13.4. Andreas Enge 2022-03-11gnu: giac: Use G-expressions....* gnu/packages/algebra.scm (giac)[arguments]: Use G-expressions. Nicolas Goaziou 2022-03-11gnu: giac: Update to 1.7.0-51....* gnu/packages/algebra.scm (giac): Update to 1.7.0-51. Nicolas Goaziou 2022-02-19gnu: gappa: Update to 1.4.0....* gnu/packages/algebra.scm (gappa): Update to 1.4.0. [license]: Update CeCILL version. Eric Bavier 2022-02-19gnu: xtensor: Update to 0.24.0....* gnu/packages/algebra.scm (xtensor): Update to 0.24.0. [native-inputs]: Add DOCTEST. (xtensor-benchmark)[arguments]: Narrow substitution regex. Marius Bakke 2022-01-26gnu: giac: Update to 1.7.0-47....* gnu/packages/algebra.scm (giac): Update to 1.7.0-47. Nicolas Goaziou 2022-01-08gnu: giac: Update to 1.7.0-45....* gnu/packages/algebra.scm (giac): Update to 1.7.0-45. [inputs]: Remove labels. [native-inputs]: Remove labels. Nicolas Goaziou 2022-01-01gnu: Add xtensor-benchmark....* gnu/packages/algebra.scm (xtensor-benchmark): New variable. Ludovic Courtès 2022-01-01gnu: Add eigen-benchmarks....* gnu/packages/algebra.scm (eigen-benchmarks): New variable. Ludovic Courtès 2021-12-14gnu: eigen-for-tensorflow: Build with GCC 7....* gnu/packages/algebra.scm (eigen-for-tensorflow)[native-inputs]: Add gcc-7. Ricardo Wurmus 2021-12-13gnu: Further simplify package inputs....This is the result of running: ./pre-inst-env guix style --input-simplification=safe and manually undoing changes on a dozen of packages to reduce rebuilds (derivations for emacs, icecat, and libreoffice are unchanged.) Ludovic Courtès 2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès 2021-12-10Merge remote-tracking branch 'signed/master' into core-updatesMathieu Othacehe 2021-12-07gnu: giac: Update to 1.7.0-43....* gnu/packages/algebra.scm (giac): Update to 1.7.0-43. Nicolas Goaziou 2021-11-23Merge branch 'master' into core-updates-frozenLudovic Courtès