21 lines
365 B
Nix
21 lines
365 B
Nix
{ pkgs, ... }: {
|
|
# home.packages = [
|
|
# pkgs.hyprland
|
|
# ];
|
|
|
|
# programs.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;
|
|
};
|
|
}
|