nixos-config/modules/home-manager/ricing/hyprland/default.nix
2024-07-11 15:02:26 +09:00

10 lines
169 B
Nix

{ config, pkgs, ... }:
{
home.file = {
".config/hypr" = {
recursive = true;
source = ../../../dotfiles/hyprland;
};
};
}