Compare commits

..

2 commits

Author SHA1 Message Date
Evie Litherland-Smith f151b3deb1 Fix duplicating "enable_transience" for fish
Starship enables fish transience automatically if it's transience is
enabled, duplicated call was causing errors

Remove obsolete fish.nix
2024-09-01 13:09:30 +01:00
Evie Litherland-Smith 624f347928 Fix typo in Konsole command definition 2024-09-01 13:09:16 +01:00
3 changed files with 1 additions and 9 deletions

View file

@ -13,7 +13,7 @@
profiles.onelight = {
name = "One-Light";
colorScheme = "onelight";
command = "${config.programs.fish}/bin/fish";
command = "${config.programs.fish.package}/bin/fish";
font = {
name = fonts.monospace.name;
size = fonts.sizes.terminal;

View file

@ -1,7 +0,0 @@
{ ... }:
{
programs.fish = {
enable = true;
interactiveShellInit = "enable_transience";
};
}

View file

@ -1,6 +1,5 @@
{ ... }:
{
programs.fish.interactiveShellInit = "enable_transience";
programs.starship = {
enable = true;
enableTransience = true;