almost done

This commit is contained in:
Sense T 2023-07-04 10:12:49 +00:00
parent 1d7aff7b65
commit c231d50826
3 changed files with 16 additions and 4 deletions

View File

@ -20,7 +20,10 @@
# Specify your home configuration modules here, for example, # Specify your home configuration modules here, for example,
# the path to your home.nix. # the path to your home.nix.
modules = [ ./home.nix ]; modules = [
./home.nix
./programs.nix
];
# Optionally use extraSpecialArgs # Optionally use extraSpecialArgs
# to pass through arguments to home.nix # to pass through arguments to home.nix

View File

@ -22,6 +22,15 @@
procps procps
bat bat
icdiff icdiff
thefuck
kubectl
kubernetes-helm
krew
yarn
python39
rustup
nodejs_20
virtualenv
# # Adds the 'hello' command to your environment. It prints a friendly # # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run. # # "Hello, world!" when run.
# pkgs.hello # pkgs.hello
@ -72,5 +81,5 @@
}; };
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.
programs.home-manager.enable = true; # programs.home-manager.enable = true;
} }

View File

@ -25,12 +25,12 @@
zsh = { zsh = {
enable = true; enable = true;
enableAutosuggestions = true; enableAutosuggestions = true;
enableSyntaxHighlighting = true; syntaxHighlighting.enable = true;
enableVteIntegration = true; enableVteIntegration = true;
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
plugins = [ "sudo" "git" "golang" "thefuck" "kubectl" "emoji" "pip" "npm" "yarn" "vscode" ]; plugins = [ "sudo" "git" "golang" "thefuck" "kubectl" "pip" "npm" "yarn" "vscode" ];
theme = "fishy"; theme = "fishy";
}; };
}; };