base: move common programs to base
This commit is contained in:
parent
0f7ee556ff
commit
5c0ec171cf
3 changed files with 31 additions and 28 deletions
|
|
@ -3,6 +3,7 @@
|
|||
imports = [
|
||||
./networking.nix
|
||||
./nix.nix
|
||||
./programs.nix
|
||||
./users.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
30
base/programs.nix
Normal file
30
base/programs.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
programs = {
|
||||
fish.enable = true;
|
||||
gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
pinentryFlavor = "curses";
|
||||
};
|
||||
mosh.enable = true;
|
||||
tmux.enable = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
# shell usage
|
||||
bat
|
||||
ripgrep
|
||||
wget
|
||||
|
||||
# development
|
||||
git
|
||||
gnupg
|
||||
pinentry-curses
|
||||
vim
|
||||
|
||||
# terminal utilities
|
||||
htop
|
||||
stow
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue