feat(modules): minimal server conf and cleaning
This commit is contained in:
parent
0738d7da36
commit
4ba06c3ab1
2 changed files with 52 additions and 98 deletions
34
modules/minimal-server.nix
Normal file
34
modules/minimal-server.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
# cli basic programs and configs that should be available on every server
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
};
|
||||
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
bat
|
||||
btop
|
||||
findutils
|
||||
fzf
|
||||
gnugrep
|
||||
git
|
||||
glances
|
||||
htop
|
||||
lazygit
|
||||
lsd
|
||||
mc
|
||||
micro
|
||||
mosh
|
||||
neovim
|
||||
ripgrep
|
||||
tmux
|
||||
tree
|
||||
unzip
|
||||
wget
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue