From c2f774cdb4f2ed3ca61f028570e09916a2f6a7f1 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Sat, 23 Sep 2023 19:33:18 +0200 Subject: [PATCH] shell: use zsh --- lib/user.nix | 6 +++--- roles/home/common.nix | 8 ++++++-- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/lib/user.nix b/lib/user.nix index 77fce2a..16382ee 100644 --- a/lib/user.nix +++ b/lib/user.nix @@ -16,15 +16,15 @@ users.${name} = { isNormalUser = name != "root"; extraGroups = [ "wheel" "plugdev" ]; - shell = pkgs.fish; + shell = pkgs.zsh; }; }; - programs.fish.enable = true; + programs.zsh.enable = true; home-manager.users.${name}.imports = [ (mkHomeRole "common") - (mkHomeRole "fish") + (mkHomeRole "zsh") ] ++ roles_mod; }; diff --git a/roles/home/common.nix b/roles/home/common.nix index 2e0686d..1023d40 100644 --- a/roles/home/common.nix +++ b/roles/home/common.nix @@ -1,7 +1,11 @@ -{ config, pkgs, ... }: +{ pkgs, ... }: { - imports = [ ./fish.nix ./git.nix ./helix.nix ]; + imports = [ + ./zsh.nix + ./git.nix + ./helix.nix + ]; home = { packages = with pkgs; [