25 lines
325 B
Nix
25 lines
325 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
nixpkgs.config = {
|
|
allowUnfree = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
any-nix-shell
|
|
bind
|
|
btop
|
|
git
|
|
lazydocker
|
|
micro
|
|
neofetch
|
|
tmux
|
|
tree
|
|
wget
|
|
];
|
|
|
|
programs = {
|
|
fish.enable = true;
|
|
command-not-found.enable = false;
|
|
};
|
|
}
|