mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 10:30:14 +01:00
34 lines
487 B
Nix
34 lines
487 B
Nix
{ pkgs, ... }:
|
|
{
|
|
config = {
|
|
environment = {
|
|
pathsToLink = [ "/share/zsh" ];
|
|
systemPackages = with pkgs; [
|
|
ncdu
|
|
glances
|
|
iotop
|
|
|
|
pciutils
|
|
lsof
|
|
dig
|
|
|
|
screen
|
|
|
|
tldr
|
|
neofetch
|
|
];
|
|
};
|
|
|
|
programs = {
|
|
zsh.enable = true;
|
|
htop.enable = true;
|
|
iotop.enable = true;
|
|
git.enable = true;
|
|
nano = {
|
|
enable = true;
|
|
syntaxHighlight = true;
|
|
};
|
|
};
|
|
};
|
|
}
|