mirror of
https://github.com/sstent/vmimages.git
synced 2026-04-04 12:03:40 +00:00
sync
This commit is contained in:
@@ -62,6 +62,7 @@ programs = {
|
|||||||
man.enable = true;
|
man.enable = true;
|
||||||
nix-index.enable = true;
|
nix-index.enable = true;
|
||||||
yt-dlp.enable = true;
|
yt-dlp.enable = true;
|
||||||
|
|
||||||
bash = {
|
bash = {
|
||||||
enable = true;
|
enable = true;
|
||||||
historyControl = ["ignorespace"];
|
historyControl = ["ignorespace"];
|
||||||
@@ -80,6 +81,26 @@ programs = {
|
|||||||
ssh-add -l
|
ssh-add -l
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
programs.zsh = {
|
||||||
|
enable = true;
|
||||||
|
shellAliases = {
|
||||||
|
ll = "ls -l";
|
||||||
|
update = "sudo nixos-rebuild switch";
|
||||||
|
};
|
||||||
|
history = {
|
||||||
|
size = 10000;
|
||||||
|
path = "${config.xdg.dataHome}/zsh/history";
|
||||||
|
};
|
||||||
|
zplug = {
|
||||||
|
enable = true;
|
||||||
|
plugins = [
|
||||||
|
{ name = "zsh-users/zsh-autosuggestions"; } # Simple plugin installation
|
||||||
|
{ name = "romkatv/powerlevel10k"; tags = [ as:theme depth:1 ]; } # Installations with additional options. For the list of options, please refer to Zplug README.
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
git = {
|
git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = "sstent";
|
userName = "sstent";
|
||||||
|
|||||||
Reference in New Issue
Block a user