34 lines
579 B
Nix
Executable file
34 lines
579 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
|
|
./bat.nix
|
|
./btop.nix
|
|
./helix.nix
|
|
./direnv.nix
|
|
];
|
|
# Some programs dont have a programs.*.enable option, so I install their package here
|
|
environment.systemPackages = with pkgs; [
|
|
speedtest-cli
|
|
# Bat has a home manager module, but I want it to be available system wide
|
|
bat
|
|
file
|
|
nvd
|
|
ncdu
|
|
tree
|
|
btdu
|
|
iperf3
|
|
restic
|
|
];
|
|
}
|