nix-stuff/roles/common/programs/default.nix
2023-06-01 13:07:12 +02:00

23 lines
330 B
Nix
Executable file

{ config, pkgs, ... }:
{
imports = [
./htop.nix
./nix.nix
./nix-index.nix
./command-not-found.nix
];
# Some programs dont have a programs.*.enable option, so I install their package here
environment.systemPackages = with pkgs; [
speedtest-cli
bat
micro
nvd
ncdu
tree
btdu
btop
iperf3
restic
];
}