27 lines
428 B
Nix
27 lines
428 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
options = {
|
|
commonPackages = lib.mkOption {
|
|
type = lib.types.listOf lib.types.package;
|
|
default = [ ];
|
|
description = "Common packages";
|
|
};
|
|
};
|
|
config.commonPackages = with pkgs; [
|
|
wget
|
|
busybox
|
|
curl
|
|
stow
|
|
gh
|
|
oh-my-posh
|
|
neovim
|
|
ripgrep
|
|
git
|
|
gcc
|
|
rustup
|
|
nixfmt-rfc-style
|
|
asciiquarium
|
|
];
|
|
config.programs.nix-ld.enable = true;
|
|
}
|