14 lines
211 B
Nix
14 lines
211 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hyprpaper.nix
|
|
];
|
|
|
|
home.file = {
|
|
".config/hypr" = {
|
|
recursive = true;
|
|
source = ../../../dotfiles/hyprland;
|
|
};
|
|
};
|
|
} |