ctucx.git: nixfiles

ctucx' nixfiles

commit 24c3937d8bb9aed2076b3af23b8f499b2a676226
parent fd8c10c3500c88886727f4803442f0676b062448
Author: Leah (ctucx) <leah@ctu.cx>
Date: Thu, 16 Jun 2022 20:46:34 +0200

programs: add mcfly
3 files changed, 17 insertions(+), 1 deletion(-)
diff --git a/configurations/programs/cli/bash.nix b/configurations/programs/cli/bash.nix
@@ -3,6 +3,7 @@
 {
   imports = [
     ./starship.nix
+    ./mcfly.nix
   ];
 
   home-manager.users.leah = {
diff --git a/configurations/programs/cli/mcfly.nix b/configurations/programs/cli/mcfly.nix
@@ -0,0 +1,14 @@
+{ ... }:
+
+{
+  home-manager.users.leah = {
+    programs = {
+      mcfly = {
+        enable                = true;
+        enableBashIntegration = true;
+        enableZshIntegration  = true;
+        enableFuzzySearch     = true;
+      };
+    };
+  };
+}
diff --git a/configurations/programs/cli/starship.nix b/configurations/programs/cli/starship.nix
@@ -3,9 +3,10 @@
 {
   home-manager.users.leah = {
     programs = {
-      starship= {
+      starship = {
         enable                = true;
         enableBashIntegration = true;
+        enableZshIntegration  = true;
         settings = {
           add_newline = false;
         };