Remove fish, set nushell as login shell
This commit is contained in:
parent
604903a774
commit
2ff3ca63c9
|
@ -110,6 +110,7 @@
|
||||||
inherit authorizedKeys;
|
inherit authorizedKeys;
|
||||||
};
|
};
|
||||||
${username} = {
|
${username} = {
|
||||||
|
shell = pkgs.nushell;
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
group = "users";
|
group = "users";
|
||||||
description = "Evie Litherland-Smith";
|
description = "Evie Litherland-Smith";
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
programs = {
|
programs = {
|
||||||
# Shells
|
# Shells
|
||||||
bash.enable = true;
|
bash.enable = true;
|
||||||
fish.enable = true;
|
|
||||||
nushell.enable = true;
|
nushell.enable = true;
|
||||||
# CLI programs and utilities
|
# CLI programs and utilities
|
||||||
carapace.enable = true;
|
carapace.enable = true;
|
||||||
|
|
|
@ -142,11 +142,11 @@
|
||||||
shell = {
|
shell = {
|
||||||
disabled = false;
|
disabled = false;
|
||||||
format = "using [$indicator]($style)";
|
format = "using [$indicator]($style)";
|
||||||
bash_indicator = " ";
|
nu_indicator = "ν ";
|
||||||
fish_indicator = " ";
|
bash_indicator = " ";
|
||||||
powershell_indicator = " ";
|
powershell_indicator = " ";
|
||||||
cmd_indicator = " ";
|
cmd_indicator = " ";
|
||||||
unknown_indicator = " ";
|
unknown_indicator = " ";
|
||||||
};
|
};
|
||||||
status = {
|
status = {
|
||||||
disabled = false;
|
disabled = false;
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
{ config, ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
shell = "${config.programs.fish.package}/bin/fish";
|
|
||||||
window = {
|
window = {
|
||||||
dynamic_title = true;
|
dynamic_title = true;
|
||||||
padding = {
|
padding = {
|
||||||
|
|
Loading…
Reference in a new issue