From 1e39c51a67dbdd9a48ff856e4f9442357f8ddc51 Mon Sep 17 00:00:00 2001 From: panotaka Date: Tue, 5 Dec 2023 23:39:59 -0400 Subject: [PATCH] Reorder imports in default.nix --- home/shell/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/home/shell/default.nix b/home/shell/default.nix index 5b90b5d..b4d934b 100644 --- a/home/shell/default.nix +++ b/home/shell/default.nix @@ -1,19 +1,19 @@ { config, ... }: { imports = [ - ./nushell - ./zsh - ./fish - ./common.nix - ./starship.nix - ./git.nix - ./eza.nix ./atuin.nix ./autojump.nix ./bat.nix + ./common.nix ./direnv.nix - ./tldr.nix + ./eza.nix + ./fish + ./git.nix + ./nushell ./rmtrash.nix + ./starship + ./tldr.nix + ./zsh ]; }