nixos/profiles/installer: update

This commit is contained in:
Gabriel Arazas 2024-03-03 10:26:19 +08:00
parent 949f42b683
commit 4a19b2004e
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -1,7 +1,15 @@
# A dedicated profile for installers with some niceties in it.
{ pkgs, ... }:
# A dedicated profile for installers with some niceties in it. This is also
# used for persistent live installers.
{ pkgs, modulesPath, ... }:
{
imports = [
"${modulesPath}/profiles/all-hardware.nix"
"${modulesPath}/profiles/base.nix"
"${modulesPath}/profiles/installation-device.nix"
];
# Include some modern niceties.
environment.systemPackages = with pkgs; [
ripgrep
git