From 098df7d058570f8e465dee84763ff597db34c311 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Tue, 27 Feb 2024 21:16:53 +0800 Subject: [PATCH] nixos/profiles/installer: init Not perfect but we'll add more niceties later. --- modules/nixos/profiles/installer.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 modules/nixos/profiles/installer.nix diff --git a/modules/nixos/profiles/installer.nix b/modules/nixos/profiles/installer.nix new file mode 100644 index 00000000..0e643b4d --- /dev/null +++ b/modules/nixos/profiles/installer.nix @@ -0,0 +1,12 @@ +# A dedicated profile for installers with some niceties in it. +{ pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + ripgrep + git + lazygit + neovim + zellij + ]; +}