20 lines
427 B
Nix
20 lines
427 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Allow unfree packages
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
# $ nix search wget
|
|
environment.systemPackages = with pkgs; [
|
|
micro
|
|
git
|
|
cloudflared
|
|
cloudflare-warp
|
|
zoxide
|
|
fzf
|
|
sqlite
|
|
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
|
# wget
|
|
];
|
|
}
|