From fe4f07f8eeefac1c2cb29c409d9731a27bbc4c51 Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.dev>
Date: Wed, 29 Jan 2025 01:49:03 +0000
Subject: [PATCH] Simplify imports

---
 .../home-manager/features/cli/default.nix     | 30 ++-----------------
 1 file changed, 3 insertions(+), 27 deletions(-)

diff --git a/nix/modules/home-manager/features/cli/default.nix b/nix/modules/home-manager/features/cli/default.nix
index 6043c7d5..9d7a57a8 100644
--- a/nix/modules/home-manager/features/cli/default.nix
+++ b/nix/modules/home-manager/features/cli/default.nix
@@ -1,43 +1,19 @@
-{
-  config,
-  inputs,
-  lib,
-  pkgs,
-  self,
-  ...
-}:
+{ ... }:
 
 {
   imports = [
-    (import ./neovim.nix {
-      inherit
-        config
-        inputs
-        lib
-        pkgs
-        self
-        ;
-    })
-
-    (import ./tmux-sessionizer.nix {
-      inherit
-        config
-        lib
-        pkgs
-        self
-        ;
-    })
-
     ./bin.nix
     ./direnv.nix
     ./fzf.nix
     ./git.nix
+    ./neovim.nix
     ./notes.nix
     ./phpactor.nix
     ./ripgrep.nix
     ./starship.nix
     ./syncthing.nix
     ./tmux.nix
+    ./tmux-sessionizer.nix
     ./zsh.nix
   ];
 }