20 lines
405 B
Nix
20 lines
405 B
Nix
# Common packages
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
# List packages installed in system profile. To search, run:
|
|
# $ nix search wget
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
git-crypt
|
|
mosh
|
|
vim
|
|
wget
|
|
];
|
|
|
|
programs.vim.defaultEditor = true; # Modal editing is life
|
|
programs.zsh.enable = true; # Use integrations
|
|
|
|
nixpkgs.config.allowUnfree = true; # Because I don't care *that* much.
|
|
}
|