diff options
Diffstat (limited to 'home/ebisu/fortune/system')
4 files changed, 4 insertions, 11 deletions
diff --git a/home/ebisu/fortune/system/fonts/meowsans/default.nix b/home/ebisu/fortune/system/fonts/meowsans/default.nix index bfef9a8..743659d 100644 --- a/home/ebisu/fortune/system/fonts/meowsans/default.nix +++ b/home/ebisu/fortune/system/fonts/meowsans/default.nix @@ -1,3 +1 @@ -{ - home.file.".local/share/fonts/MeowSans_Font ".source = ./MeowSans_Font; -} +{ home.file.".local/share/fonts/MeowSans_Font ".source = ./MeowSans_Font; } diff --git a/home/ebisu/fortune/system/shell/fish.nix b/home/ebisu/fortune/system/shell/fish.nix index 1d6003b..8d63c29 100644 --- a/home/ebisu/fortune/system/shell/fish.nix +++ b/home/ebisu/fortune/system/shell/fish.nix @@ -7,7 +7,7 @@ if status is-interactive set fish_greeting - fish_vi_key_bindings + fish_vi_key_bindings function fish_postexec --on-event fish_postexec if test "$argv" != "clear" diff --git a/home/ebisu/fortune/system/shell/scripting/ripgrep.nix b/home/ebisu/fortune/system/shell/scripting/ripgrep.nix index 75ce241..5d221e3 100644 --- a/home/ebisu/fortune/system/shell/scripting/ripgrep.nix +++ b/home/ebisu/fortune/system/shell/scripting/ripgrep.nix @@ -1,8 +1,5 @@ { pkgs, ... }: { programs.ripgrep.enable = true; - - home.packages = with pkgs; [ - ripgrep-all - ]; + home.packages = with pkgs; [ ripgrep-all ]; } diff --git a/home/ebisu/fortune/system/shell/starship.nix b/home/ebisu/fortune/system/shell/starship.nix index 1e6510a..4daeefc 100644 --- a/home/ebisu/fortune/system/shell/starship.nix +++ b/home/ebisu/fortune/system/shell/starship.nix @@ -1,8 +1,6 @@ { pkgs, ... }: { - home.packages = with pkgs; [ - starship - ]; + home.packages = with pkgs; [ starship ]; programs.starship = { enable = true; |