2013-10-13 14:20:49 +00:00
|
|
|
|
<refentry xmlns="http://docbook.org/ns/docbook"
|
|
|
|
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
|
|
|
xmlns:xi="http://www.w3.org/2001/XInclude">
|
2018-05-01 23:57:09 +00:00
|
|
|
|
<refmeta>
|
|
|
|
|
<refentrytitle><command>nixos-generate-config</command>
|
|
|
|
|
</refentrytitle><manvolnum>8</manvolnum>
|
2013-10-13 14:20:49 +00:00
|
|
|
|
<refmiscinfo class="source">NixOS</refmiscinfo>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
<!-- <refmiscinfo class="version"><xi:include href="version.txt" parse="text"/></refmiscinfo> -->
|
|
|
|
|
</refmeta>
|
|
|
|
|
<refnamediv>
|
|
|
|
|
<refname><command>nixos-generate-config</command>
|
|
|
|
|
</refname><refpurpose>generate NixOS configuration modules</refpurpose>
|
|
|
|
|
</refnamediv>
|
|
|
|
|
<refsynopsisdiv>
|
2018-06-01 01:03:51 +00:00
|
|
|
|
<cmdsynopsis>
|
|
|
|
|
<command>nixos-generate-config</command>
|
|
|
|
|
<arg>
|
|
|
|
|
<option>--force</option>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</arg>
|
2018-06-01 01:03:51 +00:00
|
|
|
|
|
2018-05-01 23:57:09 +00:00
|
|
|
|
<arg>
|
2018-06-01 01:03:51 +00:00
|
|
|
|
<arg choice='plain'>
|
|
|
|
|
<option>--root</option>
|
|
|
|
|
</arg>
|
|
|
|
|
<replaceable>root</replaceable>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</arg>
|
2018-06-01 01:03:51 +00:00
|
|
|
|
|
2018-05-01 23:57:09 +00:00
|
|
|
|
<arg>
|
2018-06-01 01:03:51 +00:00
|
|
|
|
<arg choice='plain'>
|
|
|
|
|
<option>--dir</option>
|
|
|
|
|
</arg>
|
|
|
|
|
<replaceable>dir</replaceable>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</arg>
|
2013-10-13 14:20:49 +00:00
|
|
|
|
</cmdsynopsis>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</refsynopsisdiv>
|
|
|
|
|
<refsection>
|
|
|
|
|
<title>Description</title>
|
|
|
|
|
<para>
|
|
|
|
|
This command writes two NixOS configuration modules:
|
|
|
|
|
<variablelist>
|
|
|
|
|
<varlistentry>
|
2018-06-01 01:03:51 +00:00
|
|
|
|
<term>
|
|
|
|
|
<option>/etc/nixos/hardware-configuration.nix</option>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</term>
|
|
|
|
|
<listitem>
|
|
|
|
|
<para>
|
|
|
|
|
This module sets NixOS configuration options based on your current
|
|
|
|
|
hardware configuration. In particular, it sets the
|
|
|
|
|
<option>fileSystem</option> option to reflect all currently mounted file
|
|
|
|
|
systems, the <option>swapDevices</option> option to reflect active swap
|
|
|
|
|
devices, and the <option>boot.initrd.*</option> options to ensure that
|
|
|
|
|
the initial ramdisk contains any kernel modules necessary for mounting
|
|
|
|
|
the root file system.
|
|
|
|
|
</para>
|
|
|
|
|
<para>
|
|
|
|
|
If this file already exists, it is overwritten. Thus, you should not
|
|
|
|
|
modify it manually. Rather, you should include it from your
|
|
|
|
|
<filename>/etc/nixos/configuration.nix</filename>, and re-run
|
|
|
|
|
<command>nixos-generate-config</command> to update it whenever your
|
|
|
|
|
hardware configuration changes.
|
|
|
|
|
</para>
|
|
|
|
|
</listitem>
|
|
|
|
|
</varlistentry>
|
|
|
|
|
<varlistentry>
|
2018-06-01 01:03:51 +00:00
|
|
|
|
<term>
|
|
|
|
|
<option>/etc/nixos/configuration.nix</option>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</term>
|
|
|
|
|
<listitem>
|
|
|
|
|
<para>
|
|
|
|
|
This is the main NixOS system configuration module. If it already
|
|
|
|
|
exists, it’s left unchanged. Otherwise,
|
|
|
|
|
<command>nixos-generate-config</command> will write a template for you
|
|
|
|
|
to customise.
|
|
|
|
|
</para>
|
|
|
|
|
</listitem>
|
|
|
|
|
</varlistentry>
|
|
|
|
|
</variablelist>
|
|
|
|
|
</para>
|
|
|
|
|
</refsection>
|
|
|
|
|
<refsection>
|
|
|
|
|
<title>Options</title>
|
|
|
|
|
<para>
|
|
|
|
|
This command accepts the following options:
|
|
|
|
|
</para>
|
|
|
|
|
<variablelist>
|
|
|
|
|
<varlistentry>
|
2018-06-01 01:03:51 +00:00
|
|
|
|
<term>
|
|
|
|
|
<option>--root</option>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</term>
|
2013-10-13 14:20:49 +00:00
|
|
|
|
<listitem>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
<para>
|
|
|
|
|
If this option is given, treat the directory
|
|
|
|
|
<replaceable>root</replaceable> as the root of the file system. This
|
|
|
|
|
means that configuration files will be written to
|
|
|
|
|
<filename><replaceable>root</replaceable>/etc/nixos</filename>, and that
|
|
|
|
|
any file systems outside of <replaceable>root</replaceable> are ignored
|
|
|
|
|
for the purpose of generating the <option>fileSystems</option> option.
|
|
|
|
|
</para>
|
2013-10-13 14:20:49 +00:00
|
|
|
|
</listitem>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</varlistentry>
|
|
|
|
|
<varlistentry>
|
2018-06-01 01:03:51 +00:00
|
|
|
|
<term>
|
|
|
|
|
<option>--dir</option>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</term>
|
2013-10-13 14:20:49 +00:00
|
|
|
|
<listitem>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
<para>
|
|
|
|
|
If this option is given, write the configuration files to the directory
|
|
|
|
|
<replaceable>dir</replaceable> instead of
|
|
|
|
|
<filename>/etc/nixos</filename>.
|
|
|
|
|
</para>
|
2013-10-13 14:20:49 +00:00
|
|
|
|
</listitem>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</varlistentry>
|
|
|
|
|
<varlistentry>
|
2018-06-01 01:03:51 +00:00
|
|
|
|
<term>
|
|
|
|
|
<option>--force</option>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</term>
|
2013-10-13 14:20:49 +00:00
|
|
|
|
<listitem>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
<para>
|
|
|
|
|
Overwrite <filename>/etc/nixos/configuration.nix</filename> if it already
|
|
|
|
|
exists.
|
|
|
|
|
</para>
|
2013-10-13 14:20:49 +00:00
|
|
|
|
</listitem>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</varlistentry>
|
|
|
|
|
<varlistentry>
|
2018-06-01 01:03:51 +00:00
|
|
|
|
<term>
|
|
|
|
|
<option>--no-filesystems</option>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</term>
|
2013-10-13 14:20:49 +00:00
|
|
|
|
<listitem>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
<para>
|
|
|
|
|
Omit everything concerning file systems and swap devices from the
|
|
|
|
|
hardware configuration.
|
|
|
|
|
</para>
|
2013-10-13 14:20:49 +00:00
|
|
|
|
</listitem>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</varlistentry>
|
|
|
|
|
<varlistentry>
|
2018-06-01 01:03:51 +00:00
|
|
|
|
<term>
|
|
|
|
|
<option>--show-hardware-config</option>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</term>
|
2013-10-13 14:20:49 +00:00
|
|
|
|
<listitem>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
<para>
|
|
|
|
|
Don't generate <filename>configuration.nix</filename> or
|
|
|
|
|
<filename>hardware-configuration.nix</filename> and print the hardware
|
|
|
|
|
configuration to stdout only.
|
|
|
|
|
</para>
|
2013-10-13 14:20:49 +00:00
|
|
|
|
</listitem>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</varlistentry>
|
|
|
|
|
</variablelist>
|
|
|
|
|
</refsection>
|
|
|
|
|
<refsection>
|
|
|
|
|
<title>Examples</title>
|
|
|
|
|
<para>
|
|
|
|
|
This command is typically used during NixOS installation to write initial
|
|
|
|
|
configuration modules. For example, if you created and mounted the target
|
|
|
|
|
file systems on <filename>/mnt</filename> and
|
|
|
|
|
<filename>/mnt/boot</filename>, you would run:
|
2013-10-13 14:20:49 +00:00
|
|
|
|
<screen>
|
|
|
|
|
$ nixos-generate-config --root /mnt
|
|
|
|
|
</screen>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
The resulting file
|
|
|
|
|
<filename>/mnt/etc/nixos/hardware-configuration.nix</filename> might look
|
|
|
|
|
like this:
|
2013-10-13 14:20:49 +00:00
|
|
|
|
<programlisting>
|
|
|
|
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
|
|
|
|
# and may be overwritten by future invocations. Please make changes
|
|
|
|
|
# to /etc/nixos/configuration.nix instead.
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[ <nixos/modules/installer/scan/not-detected.nix>
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "ehci_hcd" "ahci" ];
|
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
|
|
|
|
{ device = "/dev/disk/by-label/nixos";
|
|
|
|
|
fsType = "ext3";
|
2015-10-21 17:37:14 +00:00
|
|
|
|
options = [ "rw" "data=ordered" "relatime" ];
|
2013-10-13 14:20:49 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
|
|
|
|
{ device = "/dev/sda1";
|
|
|
|
|
fsType = "ext3";
|
2015-10-21 17:37:14 +00:00
|
|
|
|
options = [ "rw" "errors=continue" "user_xattr" "acl" "barrier=1" "data=writeback" "relatime" ];
|
2013-10-13 14:20:49 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
swapDevices =
|
|
|
|
|
[ { device = "/dev/sda2"; }
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
nix.maxJobs = 8;
|
|
|
|
|
}
|
|
|
|
|
</programlisting>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
It will also create a basic
|
|
|
|
|
<filename>/mnt/etc/nixos/configuration.nix</filename>, which you should edit
|
|
|
|
|
to customise the logical configuration of your system. This file includes
|
|
|
|
|
the result of the hardware scan as follows:
|
2013-10-13 14:20:49 +00:00
|
|
|
|
<programlisting>
|
|
|
|
|
imports = [ ./hardware-configuration.nix ];
|
|
|
|
|
</programlisting>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
</para>
|
|
|
|
|
<para>
|
|
|
|
|
After installation, if your hardware configuration changes, you can run:
|
2013-10-13 14:20:49 +00:00
|
|
|
|
<screen>
|
|
|
|
|
$ nixos-generate-config
|
|
|
|
|
</screen>
|
2018-05-01 23:57:09 +00:00
|
|
|
|
to update <filename>/etc/nixos/hardware-configuration.nix</filename>. Your
|
|
|
|
|
<filename>/etc/nixos/configuration.nix</filename> will
|
|
|
|
|
<emphasis>not</emphasis> be overwritten.
|
|
|
|
|
</para>
|
|
|
|
|
</refsection>
|
2013-10-13 14:20:49 +00:00
|
|
|
|
</refentry>
|