nixos-config/modules/nixos/profiles/installer.nix
Gabriel Arazas 098df7d058
nixos/profiles/installer: init
Not perfect but we'll add more niceties later.
2024-02-27 21:16:53 +08:00

13 lines
186 B
Nix

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