Files
nixos/henrovnix_ok/home/desktop/hyprscrolling.nix
T
2026-02-25 19:48:57 +01:00

28 lines
571 B
Nix

{ config, lib, pkgs, flakeRoot, ... }:
let
repoConf =
flakeRoot + "/assets/conf/desktop/hypr/hyprscrolling.conf";
targetRel = "hypr/conf.d/90-hyprscrolling.conf";
in
{
# Make sure Hyprland is managed by Home-Manager
wayland.windowManager.hyprland = {
enable = true;
# Load the plugin
plugins = [
pkgs.hyprlandPlugins.hyprscrolling
];
# Source the drop-in config
extraConfig = ''
source = ~/.config/${targetRel}
'';
};
# Copy your repo config into ~/.config
xdg.configFile."${targetRel}".source = repoConf;
}