Files
nixos/packages/hyprland/default.nix
T
2025-05-15 13:50:58 -05:00

15 lines
287 B
Nix

{ pkgs, ... }: {
hyprland.enable = true;
home.file.".config/hypr/hyprland.conf" = {
source = builtins.toPath ./hyprland.conf;
force = true;
};
home.file.".config/hypr/hyprland" = {
source = builtins.toPath ./custom;
recursive = true;
force = true;
};
}