Try switching to Zsh as default shell
This commit is contained in:
parent
13b2429cc7
commit
763cfe384a
|
@ -121,20 +121,16 @@
|
|||
home-config
|
||||
./hosts/Ronin
|
||||
./desktop/bspwm.nix
|
||||
./desktop/awesome.nix
|
||||
./desktop/qtile.nix
|
||||
./services/syncthing/Ronin.nix
|
||||
({pkgs, ...}: {
|
||||
services.xserver.displayManager = {
|
||||
autoLogin.user = "elitherl";
|
||||
defaultSession = "xfce+bspwm";
|
||||
# defaultSession = "xfce+awesome";
|
||||
};
|
||||
home-manager.users.elitherl = {
|
||||
imports = [
|
||||
./home/work.nix
|
||||
./home/desktop/bspwm.nix
|
||||
./home/desktop/awesome
|
||||
./home/gui
|
||||
];
|
||||
home = {
|
||||
|
|
11
home/env/zsh.nix
vendored
11
home/env/zsh.nix
vendored
|
@ -1,5 +1,6 @@
|
|||
{config, ...}: {
|
||||
programs.zsh = {
|
||||
programs = {
|
||||
zsh = {
|
||||
enable = true;
|
||||
enableAutosuggestions = true;
|
||||
enableCompletion = true;
|
||||
|
@ -10,7 +11,9 @@
|
|||
historySubstringSearch.enable = true;
|
||||
history.path = "${config.xdg.dataHome}/zsh/history";
|
||||
};
|
||||
programs.keychain.enableZshIntegration = true;
|
||||
programs.starship.enableZshIntegration = true;
|
||||
programs.nix-index.enableZshIntegration = true;
|
||||
keychain.enableZshIntegration = true;
|
||||
starship.enableZshIntegration = true;
|
||||
direnv.enableZshIntegration = true;
|
||||
nix-index.enableZshIntegration = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
isNormalUser = true;
|
||||
description = "Evie Litherland-Smith";
|
||||
extraGroups = ["networkmanager" "wheel"];
|
||||
shell = pkgs.fish;
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
services.greetd.settings.initial_session.user = "elitherl";
|
||||
|
||||
|
|
Loading…
Reference in a new issue