19 lines
229 B
Nix
19 lines
229 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
nixpkgs.config = {
|
|
allowUnfree = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
any-nix-shell
|
|
bind
|
|
btop
|
|
git
|
|
htop
|
|
lazydocker
|
|
micro
|
|
tmux
|
|
wget
|
|
];
|
|
}
|