summaryrefslogtreecommitdiffstats
path: root/modules/desktop/rofi.nix
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2024-01-01 10:57:38 -0500
committerJon Santmyer <jon@jonsantmyer.com>2024-01-01 10:57:38 -0500
commit184bd30bcb303104a4981ac742d8f8961c5477e7 (patch)
treee1d96fea09fce882decebc91ba1128652ada594c /modules/desktop/rofi.nix
parent5897af1a6c355f77c78f342d1d6f070670d14a4c (diff)
downloadnix-config-184bd30bcb303104a4981ac742d8f8961c5477e7.tar.gz
nix-config-184bd30bcb303104a4981ac742d8f8961c5477e7.tar.bz2
nix-config-184bd30bcb303104a4981ac742d8f8961c5477e7.zip
several changes, hyprland
Diffstat (limited to 'modules/desktop/rofi.nix')
-rw-r--r--modules/desktop/rofi.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/desktop/rofi.nix b/modules/desktop/rofi.nix
index d5aba06..85726b8 100644
--- a/modules/desktop/rofi.nix
+++ b/modules/desktop/rofi.nix
@@ -11,7 +11,12 @@ with lib;
};
config.home-manager.users.${user} = mkIf (config.rofi.enable) {
- programs.rofi = {
+
+ programs.rofi = mkIf (config.xserver.enable) {
+ enable = true;
+ };
+
+ programs.wofi = mkIf (config.hyprland.enable) {
enable = true;
};
};