infrastructure/machines/public-cof/programs.nix

28 lines
284 B
Nix
Raw Normal View History

2021-11-13 00:59:59 +01:00
{ pkgs, ... }:
let pkgsList = with pkgs; [
curl
wget
nix-prefetch-git
dnsutils
unzip
zip
ripgrep
niv
nixfmt
];
in
{
imports = [
./vim.nix
];
programs = {
tmux.enable = true;
mosh.enable = true;
};
environment.systemPackages = pkgsList;
}