nixos/profiles/installer: init

Not perfect but we'll add more niceties later.
This commit is contained in:
Gabriel Arazas 2024-02-27 21:16:53 +08:00
parent acba42bd99
commit 098df7d058
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -0,0 +1,12 @@
# A dedicated profile for installers with some niceties in it.
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
ripgrep
git
lazygit
neovim
zellij
];
}