diff --git a/hosts/default/home.nix b/hosts/default/home.nix index 80a09d1..3b73bf1 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -4,7 +4,7 @@ imports = [ ../../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/vscode.nix ]; diff --git a/modules/home-manager/vscode.nix b/modules/home-manager/vscode.nix index 4d64596..81fdb55 100644 --- a/modules/home-manager/vscode.nix +++ b/modules/home-manager/vscode.nix @@ -1,7 +1,7 @@ { pkgs, ... }: { - home.programs.vscode = { + programs.vscode = { enable = true; extensions = with pkgs.vscode-extensions; [ bbenoist.nix diff --git a/modules/home-manager/zsh.nix b/modules/home-manager/zsh.nix index c30ad45..0b4923e 100644 --- a/modules/home-manager/zsh.nix +++ b/modules/home-manager/zsh.nix @@ -2,7 +2,7 @@ { # Download zsh packages - packages = with pkgs; [ + home.packages = with pkgs; [ zsh oh-my-zsh starship @@ -15,14 +15,13 @@ autosuggestion.enable = true; syntaxHighlighting.enable = true; - programs.zsh = { - oh-my-zsh = { - enable = true; - plugins = [ - "git" - ]; - theme = "robbyrussell"; - }; + # oh-my-zsh + oh-my-zsh = { + enable = true; + plugins = [ + "git" + ]; + theme = "robbyrussell"; }; }; } \ No newline at end of file