From a4871f04b65f6fed09a083a35d5a50c3daacb3db Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sun, 12 Jan 2025 14:55:38 +0800 Subject: [PATCH] nixos/profiles/installer: update default application list --- modules/nixos/profiles/installer.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/nixos/profiles/installer.nix b/modules/nixos/profiles/installer.nix index cbc27413..752261d3 100644 --- a/modules/nixos/profiles/installer.nix +++ b/modules/nixos/profiles/installer.nix @@ -1,7 +1,7 @@ # A dedicated profile for installers with some niceties in it. This is also # used for persistent live installers so you'll have to exclude setting up shop # and do that in the respective NixOS configuration instead. -{ pkgs, lib, modulesPath, ... }: +{ pkgs, lib, modulesPath, foodogsquaredLib, ... }: { imports = [ @@ -12,13 +12,14 @@ # Include some modern niceties. environment.systemPackages = with pkgs; [ + curl disko ripgrep git lazygit neovim zellij - ]; + ] ++ foodogsquaredLib.stdenv; # Yeah, that's right, this is also a Guix System installer because SCREW YOU, # NIXOS USERS!