2009-05-29 14:43:29 +02:00
|
|
|
|
# This module generates nixos-install, nixos-rebuild,
|
2013-10-11 14:44:32 +02:00
|
|
|
|
# nixos-generate-config, etc.
|
2009-05-29 14:43:29 +02:00
|
|
|
|
|
2018-07-20 22:56:59 +02:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
2018-02-05 19:41:54 +01:00
|
|
|
|
|
|
|
|
|
with lib;
|
2009-05-29 14:43:29 +02:00
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
makeProg = args: pkgs.substituteAll (args // {
|
|
|
|
|
dir = "bin";
|
|
|
|
|
isExecutable = true;
|
|
|
|
|
});
|
2011-04-25 03:03:57 +02:00
|
|
|
|
|
2013-10-11 14:17:59 +02:00
|
|
|
|
nixos-build-vms = makeProg {
|
2010-10-22 00:50:12 +02:00
|
|
|
|
name = "nixos-build-vms";
|
|
|
|
|
src = ./nixos-build-vms/nixos-build-vms.sh;
|
|
|
|
|
};
|
2011-04-25 03:03:57 +02:00
|
|
|
|
|
2013-10-11 14:17:59 +02:00
|
|
|
|
nixos-install = makeProg {
|
2009-05-29 14:43:29 +02:00
|
|
|
|
name = "nixos-install";
|
|
|
|
|
src = ./nixos-install.sh;
|
2016-04-24 13:06:04 +02:00
|
|
|
|
nix = config.nix.package.out;
|
2018-02-05 19:50:36 +01:00
|
|
|
|
path = makeBinPath [ nixos-enter ];
|
2009-05-29 14:43:29 +02:00
|
|
|
|
};
|
|
|
|
|
|
2016-09-06 16:07:24 +02:00
|
|
|
|
nixos-rebuild =
|
|
|
|
|
let fallback = import ./nix-fallback-paths.nix; in
|
|
|
|
|
makeProg {
|
|
|
|
|
name = "nixos-rebuild";
|
|
|
|
|
src = ./nixos-rebuild.sh;
|
|
|
|
|
nix = config.nix.package.out;
|
|
|
|
|
nix_x86_64_linux = fallback.x86_64-linux;
|
|
|
|
|
nix_i686_linux = fallback.i686-linux;
|
2019-09-13 18:02:44 +02:00
|
|
|
|
path = makeBinPath [ pkgs.jq ];
|
2016-09-06 16:07:24 +02:00
|
|
|
|
};
|
2009-05-29 14:43:29 +02:00
|
|
|
|
|
2013-10-11 14:22:22 +02:00
|
|
|
|
nixos-generate-config = makeProg {
|
|
|
|
|
name = "nixos-generate-config";
|
|
|
|
|
src = ./nixos-generate-config.pl;
|
2019-04-25 14:08:20 +02:00
|
|
|
|
path = lib.optionals (lib.elem "btrfs" config.boot.supportedFilesystems) [ pkgs.btrfs-progs ];
|
2018-12-15 04:50:31 +01:00
|
|
|
|
perl = "${pkgs.perl}/bin/perl -I${pkgs.perlPackages.FileSlurp}/${pkgs.perl.libPrefix}";
|
2019-08-07 18:04:18 +02:00
|
|
|
|
inherit (config.system.nixos-generate-config) configuration;
|
2009-05-29 14:43:29 +02:00
|
|
|
|
};
|
|
|
|
|
|
2019-09-06 02:29:01 +02:00
|
|
|
|
nixos-option = pkgs.callPackage ./nixos-option { };
|
2010-09-03 21:10:50 +02:00
|
|
|
|
|
2013-10-11 14:17:59 +02:00
|
|
|
|
nixos-version = makeProg {
|
2012-04-10 22:56:38 +02:00
|
|
|
|
name = "nixos-version";
|
|
|
|
|
src = ./nixos-version.sh;
|
2017-04-01 02:00:00 +02:00
|
|
|
|
inherit (config.system.nixos) version codeName revision;
|
2019-09-13 18:58:55 +02:00
|
|
|
|
inherit (config.system) configurationRevision;
|
2020-02-10 15:25:24 +01: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 22:56:38 +02:00
|
|
|
|
};
|
|
|
|
|
|
2018-02-05 19:41:54 +01:00
|
|
|
|
nixos-enter = makeProg {
|
|
|
|
|
name = "nixos-enter";
|
|
|
|
|
src = ./nixos-enter.sh;
|
|
|
|
|
};
|
|
|
|
|
|
2009-05-29 14:43:29 +02:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
{
|
2015-08-07 05:28:17 +02:00
|
|
|
|
|
2019-08-07 18:04:18 +02: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.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2010-09-03 21:10:54 +02:00
|
|
|
|
config = {
|
2015-08-07 05:28:17 +02:00
|
|
|
|
|
2019-08-07 18:04:18 +02: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.
|
|
|
|
|
|
2019-09-24 11:41:12 +02:00
|
|
|
|
$networkingDhcpConfig
|
2019-08-07 18:04:18 +02: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.
|
|
|
|
|
# i18n = {
|
|
|
|
|
# consoleFont = "Lat2-Terminus16";
|
|
|
|
|
# consoleKeyMap = "us";
|
|
|
|
|
# defaultLocale = "en_US.UTF-8";
|
|
|
|
|
# };
|
|
|
|
|
|
|
|
|
|
# Set your time zone.
|
|
|
|
|
# time.timeZone = "Europe/Amsterdam";
|
|
|
|
|
|
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
|
|
|
# \$ nix search wget
|
|
|
|
|
# environment.systemPackages = with pkgs; [
|
|
|
|
|
# wget vim
|
|
|
|
|
# ];
|
|
|
|
|
|
|
|
|
|
# Some programs need SUID wrappers, can be configured further or are
|
|
|
|
|
# started in user sessions.
|
|
|
|
|
# programs.mtr.enable = true;
|
2018-10-27 16:02:16 +02:00
|
|
|
|
# programs.gnupg.agent = {
|
|
|
|
|
# enable = true;
|
|
|
|
|
# enableSSHSupport = true;
|
2019-11-02 20:40:48 +01:00
|
|
|
|
# pinentryFlavor = "gnome3";
|
2018-10-27 16:02:16 +02:00
|
|
|
|
# };
|
2019-08-07 18:04:18 +02: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;
|
|
|
|
|
|
|
|
|
|
# Enable CUPS to print documents.
|
|
|
|
|
# services.printing.enable = true;
|
|
|
|
|
|
|
|
|
|
# Enable sound.
|
|
|
|
|
# sound.enable = true;
|
|
|
|
|
# hardware.pulseaudio.enable = true;
|
|
|
|
|
|
|
|
|
|
# Enable the X11 windowing system.
|
|
|
|
|
# services.xserver.enable = true;
|
|
|
|
|
# services.xserver.layout = "us";
|
|
|
|
|
# services.xserver.xkbOptions = "eurosign:e";
|
|
|
|
|
|
|
|
|
|
# Enable touchpad support.
|
|
|
|
|
# services.xserver.libinput.enable = true;
|
|
|
|
|
|
|
|
|
|
# Enable the KDE Desktop Environment.
|
|
|
|
|
# services.xserver.displayManager.sddm.enable = true;
|
|
|
|
|
# services.xserver.desktopManager.plasma5.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.
|
|
|
|
|
# };
|
|
|
|
|
|
2020-01-07 22:27:03 +01: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 18:04:18 +02:00
|
|
|
|
system.stateVersion = "${config.system.nixos.release}"; # Did you read the comment?
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
'';
|
|
|
|
|
|
2010-09-03 21:10:54 +02:00
|
|
|
|
environment.systemPackages =
|
2013-10-11 14:17:59 +02:00
|
|
|
|
[ nixos-build-vms
|
|
|
|
|
nixos-install
|
|
|
|
|
nixos-rebuild
|
2013-10-11 14:22:22 +02:00
|
|
|
|
nixos-generate-config
|
2013-10-11 14:17:59 +02:00
|
|
|
|
nixos-option
|
|
|
|
|
nixos-version
|
2018-02-05 19:41:54 +01:00
|
|
|
|
nixos-enter
|
2013-10-30 18:16:30 +01:00
|
|
|
|
];
|
2009-09-14 00:13:19 +02:00
|
|
|
|
|
2010-09-03 21:10:54 +02:00
|
|
|
|
system.build = {
|
2018-05-18 15:53:04 +02:00
|
|
|
|
inherit nixos-install nixos-generate-config nixos-option nixos-rebuild nixos-enter;
|
2010-09-03 21:10:54 +02:00
|
|
|
|
};
|
2015-08-07 05:28:17 +02:00
|
|
|
|
|
2009-12-15 07:37:32 +01:00
|
|
|
|
};
|
2015-08-07 05:28:17 +02:00
|
|
|
|
|
2009-05-29 14:43:29 +02:00
|
|
|
|
}
|