shell: use zsh
This commit is contained in:
parent
a9060b0047
commit
c2f774cdb4
@ -16,15 +16,15 @@
|
|||||||
users.${name} = {
|
users.${name} = {
|
||||||
isNormalUser = name != "root";
|
isNormalUser = name != "root";
|
||||||
extraGroups = [ "wheel" "plugdev" ];
|
extraGroups = [ "wheel" "plugdev" ];
|
||||||
shell = pkgs.fish;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.fish.enable = true;
|
programs.zsh.enable = true;
|
||||||
|
|
||||||
home-manager.users.${name}.imports = [
|
home-manager.users.${name}.imports = [
|
||||||
(mkHomeRole "common")
|
(mkHomeRole "common")
|
||||||
(mkHomeRole "fish")
|
(mkHomeRole "zsh")
|
||||||
] ++ roles_mod;
|
] ++ roles_mod;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,7 +1,11 @@
|
|||||||
{ config, pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ ./fish.nix ./git.nix ./helix.nix ];
|
imports = [
|
||||||
|
./zsh.nix
|
||||||
|
./git.nix
|
||||||
|
./helix.nix
|
||||||
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
|
Loading…
Reference in New Issue
Block a user