A bunch of changes. I am not keeping track of this repo.

This commit is contained in:
Jack Mechem 2025-11-26 12:21:32 -08:00
parent 6544f1e835
commit 157aa8bba7
9 changed files with 127 additions and 83 deletions

View file

@ -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;
};
}