24 lines
343 B
Nix
Executable file
24 lines
343 B
Nix
Executable file
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./htop.nix
|
|
./nix.nix
|
|
./micro.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
|
|
file
|
|
nvd
|
|
ncdu
|
|
tree
|
|
btdu
|
|
btop
|
|
iperf3
|
|
restic
|
|
];
|
|
}
|