mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
21 lines
566 B
Nix
21 lines
566 B
Nix
|
# This module adds the calamares installer to the basic graphical NixOS
|
||
|
# installation CD.
|
||
|
|
||
|
{ pkgs, ... }:
|
||
|
let
|
||
|
calamares-nixos-autostart = pkgs.makeAutostartItem { name = "io.calamares.calamares"; package = pkgs.calamares-nixos; };
|
||
|
in
|
||
|
{
|
||
|
imports = [ ./installation-cd-graphical-base.nix ];
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
# Calamares for graphical installation
|
||
|
libsForQt5.kpmcore
|
||
|
calamares-nixos
|
||
|
calamares-nixos-autostart
|
||
|
calamares-nixos-extensions
|
||
|
# Needed for calamares QML module packagechooserq
|
||
|
libsForQt5.full
|
||
|
];
|
||
|
}
|