2009-05-29 12:43:29 +00:00
|
|
|
|
# This module generates nixos-install, nixos-rebuild,
|
2013-10-11 12:44:32 +00:00
|
|
|
|
# nixos-generate-config, etc.
|
2009-05-29 12:43:29 +00:00
|
|
|
|
|
2018-07-20 20:56:59 +00:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
2018-02-05 18:41:54 +00:00
|
|
|
|
|
|
|
|
|
with lib;
|
2009-05-29 12:43:29 +00:00
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
makeProg = args: pkgs.substituteAll (args // {
|
|
|
|
|
dir = "bin";
|
|
|
|
|
isExecutable = true;
|
|
|
|
|
});
|
2011-04-25 01:03:57 +00:00
|
|
|
|
|
2013-10-11 12:17:59 +00:00
|
|
|
|
nixos-build-vms = makeProg {
|
2010-10-21 22:50:12 +00:00
|
|
|
|
name = "nixos-build-vms";
|
|
|
|
|
src = ./nixos-build-vms/nixos-build-vms.sh;
|
2020-08-13 19:54:51 +00:00
|
|
|
|
inherit (pkgs) runtimeShell;
|
2010-10-21 22:50:12 +00:00
|
|
|
|
};
|
2011-04-25 01:03:57 +00:00
|
|
|
|
|
2013-10-11 12:17:59 +00:00
|
|
|
|
nixos-install = makeProg {
|
2009-05-29 12:43:29 +00:00
|
|
|
|
name = "nixos-install";
|
|
|
|
|
src = ./nixos-install.sh;
|
2020-08-13 19:54:51 +00:00
|
|
|
|
inherit (pkgs) runtimeShell;
|
2016-04-24 11:06:04 +00:00
|
|
|
|
nix = config.nix.package.out;
|
2020-09-20 23:33:19 +00:00
|
|
|
|
path = makeBinPath [
|
2020-09-11 17:03:03 +00:00
|
|
|
|
pkgs.jq
|
2020-09-20 23:33:19 +00:00
|
|
|
|
nixos-enter
|
2020-09-11 17:03:03 +00:00
|
|
|
|
];
|
2009-05-29 12:43:29 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-15 19:03:07 +00:00
|
|
|
|
nixos-rebuild = pkgs.nixos-rebuild.override { nix = config.nix.package.out; };
|
2009-05-29 12:43:29 +00:00
|
|
|
|
|
2013-10-11 12:22:22 +00:00
|
|
|
|
nixos-generate-config = makeProg {
|
|
|
|
|
name = "nixos-generate-config";
|
|
|
|
|
src = ./nixos-generate-config.pl;
|
2019-04-25 12:08:20 +00:00
|
|
|
|
path = lib.optionals (lib.elem "btrfs" config.boot.supportedFilesystems) [ pkgs.btrfs-progs ];
|
2021-02-24 19:53:45 +00:00
|
|
|
|
perl = "${pkgs.perl.withPackages (p: [ p.FileSlurp ])}/bin/perl";
|
2020-10-11 02:44:36 +00:00
|
|
|
|
inherit (config.system.nixos-generate-config) configuration desktopConfiguration;
|
2021-02-13 22:42:34 +00:00
|
|
|
|
xserverEnabled = config.services.xserver.enable;
|
2009-05-29 12:43:29 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-03-20 13:37:38 +00:00
|
|
|
|
nixos-option =
|
2021-06-29 17:20:29 +00:00
|
|
|
|
if lib.versionAtLeast (lib.getVersion config.nix.package) "2.4pre"
|
2020-03-20 13:37:38 +00:00
|
|
|
|
then null
|
2021-07-08 21:58:40 +00:00
|
|
|
|
else pkgs.nixos-option;
|
2010-09-03 19:10:50 +00:00
|
|
|
|
|
2013-10-11 12:17:59 +00:00
|
|
|
|
nixos-version = makeProg {
|
2012-04-10 20:56:38 +00:00
|
|
|
|
name = "nixos-version";
|
|
|
|
|
src = ./nixos-version.sh;
|
2020-08-13 19:54:51 +00:00
|
|
|
|
inherit (pkgs) runtimeShell;
|
2017-04-01 00:00:00 +00:00
|
|
|
|
inherit (config.system.nixos) version codeName revision;
|
2019-09-13 16:58:55 +00:00
|
|
|
|
inherit (config.system) configurationRevision;
|
2020-02-10 14:25:24 +00:00
|
|
|
|
json = builtins.toJSON ({
|
|
|
|
|
nixosVersion = config.system.nixos.version;
|
|
|
|
|
} // optionalAttrs (config.system.nixos.revision != null) {
|
|
|
|
|
nixpkgsRevision = config.system.nixos.revision;
|
|
|
|
|
} // optionalAttrs (config.system.configurationRevision != null) {
|
|
|
|
|
configurationRevision = config.system.configurationRevision;
|
|
|
|
|
});
|
2012-04-10 20:56:38 +00:00
|
|
|
|
};
|
|
|
|
|
|
2018-02-05 18:41:54 +00:00
|
|
|
|
nixos-enter = makeProg {
|
|
|
|
|
name = "nixos-enter";
|
|
|
|
|
src = ./nixos-enter.sh;
|
2020-08-13 19:54:51 +00:00
|
|
|
|
inherit (pkgs) runtimeShell;
|
2018-02-05 18:41:54 +00:00
|
|
|
|
};
|
|
|
|
|
|
2009-05-29 12:43:29 +00:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
{
|
2015-08-07 03:28:17 +00:00
|
|
|
|
|
2020-10-11 02:44:36 +00:00
|
|
|
|
options.system.nixos-generate-config = {
|
|
|
|
|
configuration = mkOption {
|
|
|
|
|
internal = true;
|
|
|
|
|
type = types.str;
|
|
|
|
|
description = ''
|
|
|
|
|
The NixOS module that <literal>nixos-generate-config</literal>
|
|
|
|
|
saves to <literal>/etc/nixos/configuration.nix</literal>.
|
|
|
|
|
|
|
|
|
|
This is an internal option. No backward compatibility is guaranteed.
|
|
|
|
|
Use at your own risk!
|
|
|
|
|
|
|
|
|
|
Note that this string gets spliced into a Perl script. The perl
|
|
|
|
|
variable <literal>$bootLoaderConfig</literal> can be used to
|
|
|
|
|
splice in the boot loader configuration.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2019-08-07 16:04:18 +00:00
|
|
|
|
|
2020-10-11 02:44:36 +00:00
|
|
|
|
desktopConfiguration = mkOption {
|
|
|
|
|
internal = true;
|
2021-02-13 23:45:27 +00:00
|
|
|
|
type = types.listOf types.lines;
|
|
|
|
|
default = [];
|
2020-10-11 02:44:36 +00:00
|
|
|
|
description = ''
|
|
|
|
|
Text to preseed the desktop configuration that <literal>nixos-generate-config</literal>
|
|
|
|
|
saves to <literal>/etc/nixos/configuration.nix</literal>.
|
|
|
|
|
|
|
|
|
|
This is an internal option. No backward compatibility is guaranteed.
|
|
|
|
|
Use at your own risk!
|
|
|
|
|
|
|
|
|
|
Note that this string gets spliced into a Perl script. The perl
|
|
|
|
|
variable <literal>$bootLoaderConfig</literal> can be used to
|
|
|
|
|
splice in the boot loader configuration.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2019-08-07 16:04:18 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-11-25 00:10:41 +00:00
|
|
|
|
options.system.disableInstallerTools = mkOption {
|
|
|
|
|
internal = true;
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = false;
|
|
|
|
|
description = ''
|
|
|
|
|
Disable nixos-rebuild, nixos-generate-config, nixos-installer
|
|
|
|
|
and other NixOS tools. This is useful to shrink embedded,
|
|
|
|
|
read-only systems which are not expected to be rebuild or
|
|
|
|
|
reconfigure themselves. Use at your own risk!
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
config = lib.mkIf (!config.system.disableInstallerTools) {
|
|
|
|
|
|
2019-08-07 16:04:18 +00:00
|
|
|
|
system.nixos-generate-config.configuration = mkDefault ''
|
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
|
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[ # Include the results of the hardware scan.
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$bootLoaderConfig
|
|
|
|
|
# networking.hostName = "nixos"; # Define your hostname.
|
|
|
|
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
|
|
|
|
|
2020-10-11 02:44:36 +00:00
|
|
|
|
# Set your time zone.
|
|
|
|
|
# time.timeZone = "Europe/Amsterdam";
|
|
|
|
|
|
2019-09-24 09:41:12 +00:00
|
|
|
|
$networkingDhcpConfig
|
2019-08-07 16:04:18 +00:00
|
|
|
|
# Configure network proxy if necessary
|
|
|
|
|
# networking.proxy.default = "http://user:password\@proxy:port/";
|
|
|
|
|
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
|
|
|
|
|
|
|
|
|
# Select internationalisation properties.
|
2020-04-21 00:07:53 +00:00
|
|
|
|
# i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
|
# console = {
|
|
|
|
|
# font = "Lat2-Terminus16";
|
|
|
|
|
# keyMap = "us";
|
2019-08-07 16:04:18 +00:00
|
|
|
|
# };
|
|
|
|
|
|
2021-02-13 22:42:34 +00:00
|
|
|
|
$xserverConfig
|
|
|
|
|
|
2020-10-11 02:44:36 +00:00
|
|
|
|
$desktopConfiguration
|
|
|
|
|
# Configure keymap in X11
|
|
|
|
|
# services.xserver.layout = "us";
|
|
|
|
|
# services.xserver.xkbOptions = "eurosign:e";
|
|
|
|
|
|
|
|
|
|
# Enable CUPS to print documents.
|
|
|
|
|
# services.printing.enable = true;
|
|
|
|
|
|
|
|
|
|
# Enable sound.
|
|
|
|
|
# sound.enable = true;
|
|
|
|
|
# hardware.pulseaudio.enable = true;
|
|
|
|
|
|
|
|
|
|
# Enable touchpad support (enabled default in most desktopManager).
|
|
|
|
|
# services.xserver.libinput.enable = true;
|
|
|
|
|
|
|
|
|
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|
|
|
|
# users.users.jane = {
|
|
|
|
|
# isNormalUser = true;
|
|
|
|
|
# extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
|
|
|
|
# };
|
2019-08-07 16:04:18 +00:00
|
|
|
|
|
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
|
|
|
# \$ nix search wget
|
|
|
|
|
# environment.systemPackages = with pkgs; [
|
2021-04-21 03:43:50 +00:00
|
|
|
|
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
2021-04-20 20:20:03 +00:00
|
|
|
|
# wget
|
2020-10-11 02:19:19 +00:00
|
|
|
|
# firefox
|
2019-08-07 16:04:18 +00:00
|
|
|
|
# ];
|
|
|
|
|
|
|
|
|
|
# Some programs need SUID wrappers, can be configured further or are
|
|
|
|
|
# started in user sessions.
|
|
|
|
|
# programs.mtr.enable = true;
|
2018-10-27 14:02:16 +00:00
|
|
|
|
# programs.gnupg.agent = {
|
|
|
|
|
# enable = true;
|
|
|
|
|
# enableSSHSupport = true;
|
|
|
|
|
# };
|
2019-08-07 16:04:18 +00:00
|
|
|
|
|
|
|
|
|
# List services that you want to enable:
|
|
|
|
|
|
|
|
|
|
# Enable the OpenSSH daemon.
|
|
|
|
|
# services.openssh.enable = true;
|
|
|
|
|
|
|
|
|
|
# Open ports in the firewall.
|
|
|
|
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
|
|
|
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
|
|
|
|
# Or disable the firewall altogether.
|
|
|
|
|
# networking.firewall.enable = false;
|
|
|
|
|
|
2020-01-07 21:27:03 +00:00
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
2019-08-07 16:04:18 +00:00
|
|
|
|
system.stateVersion = "${config.system.nixos.release}"; # Did you read the comment?
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
'';
|
|
|
|
|
|
2010-09-03 19:10:54 +00:00
|
|
|
|
environment.systemPackages =
|
2013-10-11 12:17:59 +00:00
|
|
|
|
[ nixos-build-vms
|
|
|
|
|
nixos-install
|
|
|
|
|
nixos-rebuild
|
2013-10-11 12:22:22 +00:00
|
|
|
|
nixos-generate-config
|
2013-10-11 12:17:59 +00:00
|
|
|
|
nixos-version
|
2018-02-05 18:41:54 +00:00
|
|
|
|
nixos-enter
|
2020-03-20 13:37:38 +00:00
|
|
|
|
] ++ lib.optional (nixos-option != null) nixos-option;
|
2009-09-13 22:13:19 +00:00
|
|
|
|
|
2010-09-03 19:10:54 +00:00
|
|
|
|
system.build = {
|
2018-05-18 13:53:04 +00:00
|
|
|
|
inherit nixos-install nixos-generate-config nixos-option nixos-rebuild nixos-enter;
|
2010-09-03 19:10:54 +00:00
|
|
|
|
};
|
2015-08-07 03:28:17 +00:00
|
|
|
|
|
2009-12-15 06:37:32 +00:00
|
|
|
|
};
|
2015-08-07 03:28:17 +00:00
|
|
|
|
|
2009-05-29 12:43:29 +00:00
|
|
|
|
}
|