hosts: rename modules -> programs
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
4
hosts/programs/adb/default.nix
Normal file
4
hosts/programs/adb/default.nix
Normal file
@@ -0,0 +1,4 @@
|
||||
{ ... }:
|
||||
{
|
||||
programs.adb.enable = true;
|
||||
}
|
9
hosts/programs/gnupg/default.nix
Normal file
9
hosts/programs/gnupg/default.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ ... }:
|
||||
{
|
||||
programs.gnupg = {
|
||||
agent = {
|
||||
enableSSHSupport = true;
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
13
hosts/programs/zsh/default.nix
Normal file
13
hosts/programs/zsh/default.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{ ... }:
|
||||
{
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
histSize = 30000;
|
||||
enableBashCompletion = true;
|
||||
enableCompletion = true;
|
||||
autosuggestions = {
|
||||
enable = true;
|
||||
highlightStyle = "fg=yellow,bold";
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user