zaphyra's git: nixfiles

zaphyra's nixfiles

commit a4e4547435949ce145e8874f84750454be31afea
parent 373054bbe7dfab79dfe678cd4999beb9c9c360a1
Author: Hannah Izzie Gesser <hannah@totient.eu>
Date: Tue, 7 Oct 2025 10:01:18 +0200

Move home-manager module 'app2unit' to common
3 files changed, 15 insertions(+), 11 deletions(-)
diff --git a/config/home/common/programs/app2unit.nix b/config/home/common/programs/app2unit.nix
@@ -0,0 +1,14 @@
+{
+  pkgs,
+  ...
+}:
+
+{
+
+  home.packages = with pkgs; [
+    unstable.app2unit
+    xdg-launch
+    xdg-terminal-exec-mkhl
+  ];
+
+}
diff --git a/config/home/zaphyra/home.nix b/config/home/zaphyra/home.nix
@@ -31,6 +31,7 @@
 
   imports = with homeManagerModules.zaphyra; [
     homeManagerModules.common.programs.starship
+    homeManagerModules.common.programs.app2unit
     programs.fish
     programs.mcfly
     programs.zoxide
diff --git a/config/home/zaphyra/programs/app2unit.nix b/config/home/zaphyra/programs/app2unit.nix
@@ -1,11 +0,0 @@
-{ pkgs, ... }:
-
-{
-
-  home.packages = with pkgs; [
-    unstable.app2unit
-    xdg-launch
-    xdg-terminal-exec-mkhl
-  ];
-
-}