nixos-config/modules/home-manager/ricing/hyprland/default.nix
2024-07-11 20:41:43 +09:00

14 lines
211 B
Nix

{ config, ... }:
{
imports = [
./hyprpaper.nix
];
home.file = {
".config/hypr" = {
recursive = true;
source = ../../../dotfiles/hyprland;
};
};
}