nix-stuff/roles/common/programs/default.nix
2023-10-10 23:11:01 +02:00

28 lines
399 B
Nix
Executable file

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