shell: use zsh

This commit is contained in:
Giulio De Pasquale 2023-09-23 19:33:18 +02:00
parent a9060b0047
commit c2f774cdb4
2 changed files with 9 additions and 5 deletions

View File

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

View File

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