initial public-cof config

This commit is contained in:
gabriel-doriath-dohler 2021-11-12 23:59:59 +00:00
parent 20147f145b
commit 9cb53cb9db
8 changed files with 174 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ 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;
}