unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
From: angry rectangle <angryrectangle@cock.li>
To: 56209@debbugs.gnu.org
Subject: bug#56209:
Date: Sat, 25 Jun 2022 01:42:33 -0400	[thread overview]
Message-ID: <875ykpfgbt.fsf@cock.li> (raw)
In-Reply-To: <87a6a1fgpn.fsf@cock.li>

[-- Attachment #1: Type: text/plain, Size: 23 bytes --]

forgot the attachment.

[-- Attachment #2: guix system config --]
[-- Type: text/plain, Size: 1214 bytes --]

(use-modules (gnu) (gnu system) (gnu bootloader grub) (gnu packages dns))
(use-package-modules linux certs)
(use-service-modules networking)

(operating-system
 (kernel linux-libre)
 
 (host-name "myhostname")
 (timezone "America/New_York")
 (locale "en_US.utf8")

 (bootloader (bootloader-configuration
              (bootloader grub-bootloader)
              (target #f)))

 (mapped-devices
  (list (mapped-device
         (source (uuid "my--uuid--goes--here"))
         (target "cryptroot")
         (type luks-device-mapping))))
 (file-systems
  (append
   (list (file-system
          (device "/dev/mapper/cryptroot")
          (mount-point "/")
          (type "ext4")
          (dependencies mapped-devices)))
   %base-file-systems))
 
 (sudoers-file (plain-file "sudoers" "\
root ALL=(ALL) ALL
%wheel ALL=(ALL) NOPASSWD:ALL\n"))
 (users (cons (user-account
               (name "angry")
               (group "users")
               (password (crypt "a" "$6$abc"))
               (supplementary-groups '("wheel" "audio" "video")))
              %base-user-accounts))
 (packages (cons nss-certs %base-packages))
 (services (cons*
            (service dhcp-client-service-type)
            %base-services)))

  reply	other threads:[~2022-06-25  9:11 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-25  5:27 bug#56209: Shepherd 0.9 not cleanly unmounting root angry rectangle
2022-06-25  5:42 ` angry rectangle [this message]
2022-06-27 21:50 ` Ludovic Courtès
2022-06-28 22:02   ` Ludovic Courtès
2022-06-29  0:18     ` angry rectangle
2022-07-01 10:29       ` Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=875ykpfgbt.fsf@cock.li \
    --to=angryrectangle@cock.li \
    --cc=56209@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).