Update Python installation module

This commit is contained in:
Michael Smith 2024-08-17 17:30:36 +02:00
parent 532d0f302c
commit d0194a555b

View File

@ -19,85 +19,68 @@ _ = gettext.translation("calamares-python",
languages=libcalamares.utils.gettext_languages(), languages=libcalamares.utils.gettext_languages(),
fallback=True).gettext fallback=True).gettext
configuration_head = """
# The following strings contain pieces of a nix-configuration file.
# They are adapted from the default config generated from the nixos-generate-config command.
cfghead = """# 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, ... }: { config, pkgs, ... }:
{ {
imports = imports =
[ # Include the results of the hardware scan. [
./hardware-configuration.nix ./hardware-configuration.nix
]; ];
""" """
cfgbootefi = """ # Bootloader.
configuration_body = """
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
""" networking.hostName = "@@hostname@@";
cfgbootbios = """ # Bootloader.
boot.loader.grub.enable = true;
boot.loader.grub.device = "@@bootdev@@";
boot.loader.grub.useOSProber = true;
"""
cfgbootnone = """ # Disable bootloader.
boot.loader.grub.enable = false;
"""
cfgbootgrubcrypt = """ # Setup keyfile
boot.initrd.secrets = {
"/boot/crypto_keyfile.bin" = null;
};
boot.loader.grub.enableCryptodisk = true;
"""
cfgnetwork = """ networking.hostName = "@@hostname@@"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
"""
cfgnetworkmanager = """ # Enable networking
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
services.xserver.enable = true;
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
services.printing.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
users.users.@@username@@ = {
isNormalUser = true;
description = "@@fullname@@";
extraGroups = [ @@groups@@ ];
};
programs.firefox.enable = true;
services.displayManager.autoLogin = {
enable = true;
user = "@@username@@";
};
# Workaround for GNOME autologin: https://github.com/NixOS/nixpkgs/issues/103746#issuecomment-945091229
systemd.services."getty@tty1".enable = false;
systemd.services."autovt@tty1".enable = false;
nixpkgs.config.allowUnfree = true;
""" """
cfgconnman = """ # Enable networking cfgtime = """
services.connman.enable = true;
"""
cfgnmapplet = """ # Enable network manager applet
programs.nm-applet.enable = true;
"""
cfgtime = """ # Set your time zone.
time.timeZone = "@@timezone@@"; time.timeZone = "@@timezone@@";
""" """
cfglocale = """ # Select internationalisation properties. cfglocale = """
i18n.defaultLocale = "@@LANG@@"; i18n.defaultLocale = "@@LANG@@";
""" """
cfglocaleextra = """ i18n.extraLocaleSettings = { cfglocaleextra = """
i18n.extraLocaleSettings = {
LC_ADDRESS = "@@LC_ADDRESS@@"; LC_ADDRESS = "@@LC_ADDRESS@@";
LC_IDENTIFICATION = "@@LC_IDENTIFICATION@@"; LC_IDENTIFICATION = "@@LC_IDENTIFICATION@@";
LC_MEASUREMENT = "@@LC_MEASUREMENT@@"; LC_MEASUREMENT = "@@LC_MEASUREMENT@@";
@ -108,221 +91,20 @@ cfglocaleextra = """ i18n.extraLocaleSettings = {
LC_TELEPHONE = "@@LC_TELEPHONE@@"; LC_TELEPHONE = "@@LC_TELEPHONE@@";
LC_TIME = "@@LC_TIME@@"; LC_TIME = "@@LC_TIME@@";
}; };
""" """
cfggnome = """ # Enable the X11 windowing system. cfgkeymap = """
services.xserver.enable = true;
# Enable the GNOME Desktop Environment.
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
"""
cfgplasma5 = """ # Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the KDE Plasma Desktop Environment.
services.displayManager.sddm.enable = true;
services.xserver.desktopManager.plasma5.enable = true;
"""
cfgplasma6 = """ # Enable the X11 windowing system.
# You can disable this if you're only using the Wayland session.
services.xserver.enable = true;
# Enable the KDE Plasma Desktop Environment.
services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true;
"""
cfgxfce = """ # Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the XFCE Desktop Environment.
services.xserver.displayManager.lightdm.enable = true;
services.xserver.desktopManager.xfce.enable = true;
"""
cfgpantheon = """ # Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the Pantheon Desktop Environment.
services.xserver.displayManager.lightdm.enable = true;
services.xserver.desktopManager.pantheon.enable = true;
"""
cfgcinnamon = """ # Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the Cinnamon Desktop Environment.
services.xserver.displayManager.lightdm.enable = true;
services.xserver.desktopManager.cinnamon.enable = true;
"""
cfgmate = """ # Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the MATE Desktop Environment.
services.xserver.displayManager.lightdm.enable = true;
services.xserver.desktopManager.mate.enable = true;
"""
cfgenlightenment = """ # Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the Enlightenment Desktop Environment.
services.xserver.displayManager.lightdm.enable = true;
services.xserver.desktopManager.enlightenment.enable = true;
# Enable acpid
services.acpid.enable = true;
"""
cfglxqt = """ # Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the LXQT Desktop Environment.
services.xserver.displayManager.lightdm.enable = true;
services.xserver.desktopManager.lxqt.enable = true;
"""
cfglumina = """ # Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the Lumina Desktop Environment.
services.xserver.displayManager.lightdm.enable = true;
services.xserver.desktopManager.lumina.enable = true;
"""
cfgbudgie = """ # Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the Budgie Desktop environment.
services.xserver.displayManager.lightdm.enable = true;
services.xserver.desktopManager.budgie.enable = true;
"""
cfgdeepin = """ # Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the Deepin Desktop Environment.
services.xserver.displayManager.lightdm.enable = true;
services.xserver.desktopManager.deepin.enable = true;
"""
cfgkeymap = """ # Configure keymap in X11
services.xserver.xkb = { services.xserver.xkb = {
layout = "@@kblayout@@"; layout = "@@kblayout@@";
variant = "@@kbvariant@@"; variant = "@@kbvariant@@";
}; };
""" """
cfgconsole = """ # Configure console keymap
cfgconsole = """
console.keyMap = "@@vconsole@@"; console.keyMap = "@@vconsole@@";
""" """
cfgmisc = """ # Enable CUPS to print documents. configuration_tail = """
services.printing.enable = true;
# Enable sound with pipewire.
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
#media-session.enable = true;
};
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;
"""
cfgusers = """ # Define a user account. Don't forget to set a password with passwd.
users.users.@@username@@ = {
isNormalUser = true;
description = "@@fullname@@";
extraGroups = [ @@groups@@ ];
packages = with pkgs; [@@pkgs@@];
};
"""
cfgfirefox = """ # Install firefox.
programs.firefox.enable = true;
"""
cfgautologin = """ # Enable automatic login for the user.
services.xserver.displayManager.autoLogin.enable = true;
services.xserver.displayManager.autoLogin.user = "@@username@@";
"""
cfgautologingdm = """ # Workaround for GNOME autologin: https://github.com/NixOS/nixpkgs/issues/103746#issuecomment-945091229
systemd.services."getty@tty1".enable = false;
systemd.services."autovt@tty1".enable = false;
"""
cfgautologintty = """ # Enable automatic login for the user.
services.getty.autologinUser = "@@username@@";
"""
cfgunfree = """ # Allow unfree packages
nixpkgs.config.allowUnfree = true;
"""
cfgpkgs = """ # List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
];
"""
cfgtail = """ # Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
# 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;
# This value determines the NixOS release from which the default # This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions # settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave # on your system were taken. Its perfectly fine and recommended to leave
@ -334,9 +116,8 @@ cfgtail = """ # Some programs need SUID wrappers, can be configured further or
} }
""" """
def pretty_name(): def pretty_name():
return _("Installing NixOS.") return _("Installing Desk OS.")
status = pretty_name() status = pretty_name()
@ -359,34 +140,24 @@ def catenate(d, key, *values):
d[key] = "".join(values) d[key] = "".join(values)
def run(): def run():
"""NixOS Configuration.""" """Desk OS Configuration."""
global status global status
status = _("Configuring NixOS") status = _("Configuring Desk OS")
libcalamares.job.setprogress(0.1) libcalamares.job.setprogress(0.1)
# Create initial config file # Create initial config file
cfg = cfghead cfg = configuration_head
gs = libcalamares.globalstorage gs = libcalamares.globalstorage
variables = dict() variables = dict()
# Setup variables # Setup variables
root_mount_point = gs.value("rootMountPoint") root_mount_point = gs.value("rootMountPoint")
config = os.path.join(root_mount_point, "etc/nixos/configuration.nix") configFile = os.path.join(root_mount_point, "etc/nixos/configuration.nix")
fw_type = gs.value("firmwareType")
bootdev = "nodev" if gs.value("bootLoader") is None else gs.value(
"bootLoader")['installPath']
# Pick config parts and prepare substitution # Pick config parts and prepare substitution
# Check bootloader cfg += configuration_body
if (fw_type == "efi"):
cfg += cfgbootefi
elif (bootdev != "nodev"):
cfg += cfgbootbios
catenate(variables, "bootdev", bootdev)
else:
cfg += cfgbootnone
# Setup encrypted swap devices. nixos-generate-config doesn't seem to notice them. # Setup encrypted swap devices. nixos-generate-config doesn't seem to notice them.
for part in gs.value("partitions"): for part in gs.value("partitions"):
@ -394,67 +165,11 @@ def run():
cfg += """ boot.initrd.luks.devices."{}".device = "/dev/disk/by-uuid/{}";\n""".format( cfg += """ boot.initrd.luks.devices."{}".device = "/dev/disk/by-uuid/{}";\n""".format(
part["luksMapperName"], part["uuid"]) part["luksMapperName"], part["uuid"])
# Check partitions status = _("Configuring Desk OS")
root_is_encrypted = False
boot_is_encrypted = False
boot_is_partition = False
for part in gs.value("partitions"):
if part["mountPoint"] == "/":
root_is_encrypted = part["fsName"] in ["luks", "luks2"]
elif part["mountPoint"] == "/boot":
boot_is_partition = True
boot_is_encrypted = part["fsName"] in ["luks", "luks2"]
# Setup keys in /boot/crypto_keyfile if using BIOS and Grub cryptodisk
if fw_type != "efi" and ((boot_is_partition and boot_is_encrypted) or (root_is_encrypted and not boot_is_partition)):
cfg += cfgbootgrubcrypt
status = _("Setting up LUKS")
libcalamares.job.setprogress(0.15)
try:
libcalamares.utils.host_env_process_output(
["mkdir", "-p", root_mount_point+"/boot"], None)
libcalamares.utils.host_env_process_output(
["chmod", "0700", root_mount_point+"/boot"], None)
# Create /boot/crypto_keyfile.bin
libcalamares.utils.host_env_process_output(
["dd", "bs=512", "count=4", "if=/dev/random", "of="+root_mount_point+"/boot/crypto_keyfile.bin", "iflag=fullblock"], None)
libcalamares.utils.host_env_process_output(
["chmod", "600", root_mount_point+"/boot/crypto_keyfile.bin"], None)
except subprocess.CalledProcessError:
libcalamares.utils.error(
"Failed to create /boot/crypto_keyfile.bin")
return (_("Failed to create /boot/crypto_keyfile.bin"), _("Check if you have enough free space on your partition."))
for part in gs.value("partitions"):
if part["claimed"] == True and (part["fsName"] == "luks" or part["fsName"] == "luks2") and part["device"] is not None:
cfg += """ boot.initrd.luks.devices."{}".keyFile = "/boot/crypto_keyfile.bin";\n""".format(part["luksMapperName"])
try:
# Grub currently only supports pbkdf2 for luks2
libcalamares.utils.host_env_process_output(
["cryptsetup", "luksConvertKey", "--hash", "sha256", "--pbkdf", "pbkdf2", part["device"]], None, part["luksPassphrase"])
# Add luks drives to /boot/crypto_keyfile.bin
libcalamares.utils.host_env_process_output(
["cryptsetup", "luksAddKey", "--hash", "sha256", "--pbkdf", "pbkdf2", part["device"], root_mount_point+"/boot/crypto_keyfile.bin"], None, part["luksPassphrase"])
except subprocess.CalledProcessError:
libcalamares.utils.error(
"Failed to add {} to /boot/crypto_keyfile.bin".format(part["luksMapperName"]))
return (_("cryptsetup failed"), _("Failed to add {} to /boot/crypto_keyfile.bin".format(part["luksMapperName"])))
status = _("Configuring NixOS")
libcalamares.job.setprogress(0.18) libcalamares.job.setprogress(0.18)
cfg += cfgnetwork
if gs.value("packagechooser_packagechooser") == "enlightenment":
cfg += cfgconnman
else:
cfg += cfgnetworkmanager
if (gs.value("packagechooser_packagechooser") == "mate") | (gs.value("packagechooser_packagechooser") == "lxqt") | (gs.value("packagechooser_packagechooser") == "lumina"):
cfg += cfgnmapplet
if (gs.value("hostname") is None): if (gs.value("hostname") is None):
catenate(variables, "hostname", "nixos") catenate(variables, "hostname", "desk-os")
else: else:
catenate(variables, "hostname", gs.value("hostname")) catenate(variables, "hostname", gs.value("hostname"))
@ -473,33 +188,6 @@ def run():
for conf in localeconf: for conf in localeconf:
catenate(variables, conf, localeconf.get(conf).split("/")[0]) catenate(variables, conf, localeconf.get(conf).split("/")[0])
# Choose desktop environment
if gs.value("packagechooser_packagechooser") == "gnome":
cfg += cfggnome
elif gs.value("packagechooser_packagechooser") == "plasma5":
cfg += cfgplasma5
elif gs.value("packagechooser_packagechooser") == "plasma6":
cfg += cfgplasma6
elif gs.value("packagechooser_packagechooser") == "xfce":
cfg += cfgxfce
elif gs.value("packagechooser_packagechooser") == "pantheon":
cfg += cfgpantheon
elif gs.value("packagechooser_packagechooser") == "cinnamon":
cfg += cfgcinnamon
elif gs.value("packagechooser_packagechooser") == "mate":
cfg += cfgmate
elif gs.value("packagechooser_packagechooser") == "enlightenment":
cfg += cfgenlightenment
elif gs.value("packagechooser_packagechooser") == "lxqt":
cfg += cfglxqt
elif gs.value("packagechooser_packagechooser") == "lumina":
cfg += cfglumina
elif gs.value("packagechooser_packagechooser") == "budgie":
cfg += cfgbudgie
elif gs.value("packagechooser_packagechooser") == "deepin":
cfg += cfgdeepin
if (gs.value("keyboardLayout") is not None and gs.value("keyboardVariant") is not None):
cfg += cfgkeymap cfg += cfgkeymap
catenate(variables, "kblayout", gs.value("keyboardLayout")) catenate(variables, "kblayout", gs.value("keyboardLayout"))
catenate(variables, "kbvariant", gs.value("keyboardVariant")) catenate(variables, "kbvariant", gs.value("keyboardVariant"))
@ -556,47 +244,17 @@ def run():
libcalamares.utils.error("Setting vconsole keymap to {} will fail, using default".format( libcalamares.utils.error("Setting vconsole keymap to {} will fail, using default".format(
gs.value("keyboardVConsoleKeymap"))) gs.value("keyboardVConsoleKeymap")))
if gs.value("packagechooser_packagechooser") is not None and gs.value("packagechooser_packagechooser") != "":
cfg += cfgmisc
if (gs.value("username") is not None): if (gs.value("username") is not None):
fullname = gs.value("fullname") fullname = gs.value("fullname")
groups = ["networkmanager", "wheel"] groups = ["networkmanager", "wheel"]
cfg += cfgusers
catenate(variables, "username", gs.value("username")) catenate(variables, "username", gs.value("username"))
catenate(variables, "fullname", fullname) catenate(variables, "fullname", fullname)
catenate(variables, "groups", (" ").join( catenate(variables, "groups", (" ").join(
["\"" + s + "\"" for s in groups])) ["\"" + s + "\"" for s in groups]))
if (gs.value("autoLoginUser") is not None and gs.value("packagechooser_packagechooser") is not None and gs.value("packagechooser_packagechooser") != ""):
cfg += cfgautologin
if (gs.value("packagechooser_packagechooser") == "gnome"):
cfg += cfgautologingdm
elif (gs.value("autoLoginUser") is not None):
cfg += cfgautologintty
if gs.value("packagechooser_packagechooser") != "":
cfg += cfgfirefox
# Check if unfree packages are allowed cfg += configuration_tail
free = True
if gs.value("packagechooser_unfree") is not None:
if gs.value("packagechooser_unfree") == "unfree":
free = False
cfg += cfgunfree
cfg += cfgpkgs
# Use firefox as default as a graphical web browser, and add kate to plasma desktop
if gs.value("packagechooser_packagechooser") == "plasma5":
catenate(variables, "pkgs", "\n kate\n # thunderbird\n ")
elif gs.value("packagechooser_packagechooser") == "plasma6":
catenate(variables, "pkgs", "\n kdePackages.kate\n # thunderbird\n ")
elif gs.value("packagechooser_packagechooser") != "":
catenate(variables, "pkgs", "\n # thunderbird\n ")
else:
catenate(variables, "pkgs", "")
cfg += cfgtail
version = ".".join(subprocess.getoutput( version = ".".join(subprocess.getoutput(
["nixos-version"]).split(".")[:2])[:5] ["nixos-version"]).split(".")[:2])[:5]
catenate(variables, "nixosversion", version) catenate(variables, "nixosversion", version)
@ -621,7 +279,7 @@ def run():
pattern = "@@{key}@@".format(key=key) pattern = "@@{key}@@".format(key=key)
cfg = cfg.replace(pattern, str(variables[key])) cfg = cfg.replace(pattern, str(variables[key]))
status = _("Generating NixOS configuration") status = _("Generating Desk OS configuration")
libcalamares.job.setprogress(0.25) libcalamares.job.setprogress(0.25)
try: try:
@ -633,37 +291,14 @@ def run():
libcalamares.utils.error(e.output.decode("utf8")) libcalamares.utils.error(e.output.decode("utf8"))
return (_("nixos-generate-config failed"), _(e.output.decode("utf8"))) return (_("nixos-generate-config failed"), _(e.output.decode("utf8")))
# Check for unfree stuff in hardware-configuration.nix
hf = open(root_mount_point + "/etc/nixos/hardware-configuration.nix", "r")
htxt = hf.read()
search = re.search("boot\.extraModulePackages = \[ (.*) \];", htxt)
# Check if any extraModulePackages are defined, and remove if only free packages are allowed
if search is not None and free:
expkgs = search.group(1).split(" ")
for pkg in expkgs:
p = ".".join(pkg.split(".")[3:])
# Check package p is unfree
isunfree = subprocess.check_output(["nix-instantiate", "--eval", "--strict", "-E",
"with import <nixpkgs> {{}}; pkgs.linuxKernel.packageAliases.linux_default.{}.meta.unfree".format(p), "--json"], stderr=subprocess.STDOUT)
if isunfree == b'true':
libcalamares.utils.warning(
"{} is marked as unfree, removing from hardware-configuration.nix".format(p))
expkgs.remove(pkg)
hardwareout = re.sub(
"boot\.extraModulePackages = \[ (.*) \];", "boot.extraModulePackages = [ {}];".format("".join(map(lambda x: x+" ", expkgs))), htxt)
# Write the hardware-configuration.nix file
libcalamares.utils.host_env_process_output(["cp", "/dev/stdin",
root_mount_point+"/etc/nixos/hardware-configuration.nix"], None, hardwareout)
# Write the configuration.nix file # Write the configuration.nix file
libcalamares.utils.host_env_process_output( libcalamares.utils.host_env_process_output(
["cp", "/dev/stdin", config], None, cfg) ["cp", "/dev/stdin", configFile], None, cfg)
status = _("Installing NixOS") status = _("Installing Desk OS")
libcalamares.job.setprogress(0.3) libcalamares.job.setprogress(0.3)
# Install customizations # Install
try: try:
output = "" output = ""
proc = subprocess.Popen(["pkexec", "nixos-install", "--no-root-passwd", "--root", root_mount_point], stdout=subprocess.PIPE, stderr=subprocess.STDOUT) proc = subprocess.Popen(["pkexec", "nixos-install", "--no-root-passwd", "--root", root_mount_point], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)