Configure oh-my-zsh

This commit is contained in:
Isshi0417 2024-07-03 20:41:19 +09:00
parent f280f88d3e
commit 6cff2a3a6f
3 changed files with 10 additions and 11 deletions

View File

@ -4,7 +4,7 @@
imports = imports =
[ [
../../modules/home-manager/git.nix ../../modules/home-manager/git.nix
# ../../modules/home-manager/zsh.nix ../../modules/home-manager/zsh.nix
../../modules/home-manager/themes/basic-gtk.nix ../../modules/home-manager/themes/basic-gtk.nix
../../modules/home-manager/vscode.nix ../../modules/home-manager/vscode.nix
]; ];

View File

@ -1,7 +1,7 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home.programs.vscode = { programs.vscode = {
enable = true; enable = true;
extensions = with pkgs.vscode-extensions; [ extensions = with pkgs.vscode-extensions; [
bbenoist.nix bbenoist.nix

View File

@ -2,7 +2,7 @@
{ {
# Download zsh packages # Download zsh packages
packages = with pkgs; [ home.packages = with pkgs; [
zsh zsh
oh-my-zsh oh-my-zsh
starship starship
@ -15,7 +15,7 @@
autosuggestion.enable = true; autosuggestion.enable = true;
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
programs.zsh = { # oh-my-zsh
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
plugins = [ plugins = [
@ -24,5 +24,4 @@
theme = "robbyrussell"; theme = "robbyrussell";
}; };
}; };
};
} }