2021-02-06 15:35:38 +01:00
|
|
|
# Common packages
|
2021-04-07 22:05:15 +02:00
|
|
|
{ config, pkgs, ... }:
|
2021-02-06 15:35:38 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
|
|
# $ nix search wget
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
git
|
|
|
|
git-crypt
|
|
|
|
mosh
|
|
|
|
vim
|
|
|
|
wget
|
|
|
|
];
|
|
|
|
|
2021-02-11 00:51:54 +01:00
|
|
|
programs.vim.defaultEditor = true; # Modal editing is life
|
2021-04-07 22:05:15 +02:00
|
|
|
programs.zsh = {
|
|
|
|
enable = true; # Use integrations
|
|
|
|
# Disable global compinit when a user config exists
|
|
|
|
enableGlobalCompInit = !config.my.home.zsh.enable;
|
|
|
|
};
|
2021-02-11 00:51:54 +01:00
|
|
|
|
2021-02-06 15:35:38 +01:00
|
|
|
nixpkgs.config.allowUnfree = true; # Because I don't care *that* much.
|
|
|
|
}
|