Split out Rofi from home configuration.

This commit is contained in:
jay
2025-07-02 05:30:34 -04:00
parent 406b508ab9
commit 02288500e8
2 changed files with 7 additions and 5 deletions

View File

@@ -8,6 +8,7 @@
imports = [ imports = [
inputs.hyprpanel.homeManagerModules.hyprpanel inputs.hyprpanel.homeManagerModules.hyprpanel
./programs/rofi.nix
./services/arrpc.nix ./services/arrpc.nix
./services/fluidsynth.nix ./services/fluidsynth.nix
./services/hypridle.nix ./services/hypridle.nix
@@ -59,11 +60,6 @@
}; };
}; };
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
};
programs.lazygit.enable = true; programs.lazygit.enable = true;
programs.git = { programs.git = {

View File

@@ -0,0 +1,6 @@
{ pkgs, ...}: {
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
};
}