30 lines
483 B
Nix
30 lines
483 B
Nix
{ specialArgs, inputs, config, pkgs, lib, ... }:
|
|
|
|
{
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
bind
|
|
broot
|
|
btop
|
|
comma
|
|
git
|
|
lazydocker
|
|
micro
|
|
neofetch
|
|
# nix-your-shell # Currently only available in unstable
|
|
sysz
|
|
tmux
|
|
tree
|
|
wget
|
|
# Package overrides
|
|
(nnn.override {
|
|
withNerdIcons = true;
|
|
})
|
|
];
|
|
|
|
programs = {
|
|
fish.enable = true;
|
|
command-not-found.enable = false;
|
|
};
|
|
}
|