A bunch of changes. I am not keeping track of this repo.
This commit is contained in:
parent
6544f1e835
commit
157aa8bba7
9 changed files with 127 additions and 83 deletions
|
|
@ -1,28 +1,31 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
shellAliases = {
|
||||
rebuild-nix = "sudo nixos-rebuild switch --flake /home/jack/nixos/#t480";
|
||||
};
|
||||
in
|
||||
{
|
||||
programs.zsh = {
|
||||
# let
|
||||
# shellAliases = {
|
||||
# rebuild-nix = "sudo nixos-rebuild switch --flake /home/jack/nixos/#t480";
|
||||
# };
|
||||
# in
|
||||
{
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
# inherit shellAliases;
|
||||
syntaxHighlighting.enable = true;
|
||||
autosuggestion.enable = true;
|
||||
initContent = ''
|
||||
fastfetch -c examples/11
|
||||
'';
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
inherit shellAliases;
|
||||
syntaxHighlighting.enable = true;
|
||||
autosuggestion.enable = true;
|
||||
};
|
||||
programs.zsh.oh-my-zsh = {
|
||||
enable = true;
|
||||
theme = "gentoo";
|
||||
plugins = [
|
||||
"git"
|
||||
"kubectl"
|
||||
"helm"
|
||||
"docker"
|
||||
];
|
||||
};
|
||||
programs.bash = {
|
||||
enable = true;
|
||||
inherit shellAliases;
|
||||
theme = "gentoo";
|
||||
plugins = [
|
||||
"git"
|
||||
"kubectl"
|
||||
"helm"
|
||||
"docker"
|
||||
];
|
||||
};
|
||||
};
|
||||
programs.bash = {
|
||||
enable = true;
|
||||
# inherit shellAliases;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue