30 lines
330 B
Nix
30 lines
330 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
agenix
|
|
bind
|
|
btop
|
|
fastfetch
|
|
git
|
|
helix
|
|
killall
|
|
sysz
|
|
tmux
|
|
tree
|
|
wget
|
|
];
|
|
|
|
programs = {
|
|
fish.enable = true;
|
|
command-not-found.enable = false;
|
|
};
|
|
}
|