You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
9 years ago
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
# List packages installed in system profile. To search by name, run:
|
||
|
# $ nix-env -qaP | grep wget
|
||
|
environment = {
|
||
|
systemPackages = with pkgs; [
|
||
|
bind # utilisé pour les utilitaires comme dig
|
||
|
byobu
|
||
9 years ago
|
exfat # Pour monter les FAT avec Fuse
|
||
9 years ago
|
git gitAndTools.gitSVN gitAndTools.tig
|
||
9 years ago
|
gnumake
|
||
9 years ago
|
gnupg
|
||
|
htop
|
||
|
ncdu
|
||
|
nmap
|
||
|
mtr
|
||
|
p7zip
|
||
|
parted
|
||
9 years ago
|
pciutils
|
||
9 years ago
|
python34Packages.glances
|
||
|
pwgen
|
||
|
tmux
|
||
|
tree
|
||
9 years ago
|
usbutils
|
||
9 years ago
|
(import ./vim.nix)
|
||
|
wget
|
||
9 years ago
|
which
|
||
9 years ago
|
];
|
||
|
shellAliases = {
|
||
|
byobu = "byobu-tmux";
|
||
|
tree = "tree -C";
|
||
|
tree1 = "tree -d -L 1";
|
||
|
tree2 = "tree -d -L 2";
|
||
|
tree3 = "tree -d -L 3";
|
||
|
grep = "grep --color=auto";
|
||
|
vi = "vim";
|
||
|
};
|
||
|
etc.gitconfig.text = builtins.readFile ./gitconfig;
|
||
|
};
|
||
|
programs.bash = {
|
||
|
enableCompletion = true;
|
||
|
promptInit = builtins.readFile ./bash-prompt.sh;
|
||
|
interactiveShellInit = builtins.readFile ./bash-interactive-init.sh;
|
||
|
};
|
||
|
}
|