15 lines
215 B
Nix
15 lines
215 B
Nix
{ pkgs, ... }: {
|
|
home.packages = [
|
|
pkgs.hyprland
|
|
];
|
|
|
|
programs.hyprland = {
|
|
enable = true;
|
|
};
|
|
|
|
home.file."./config/hyprland.conf" = {
|
|
source = "./custom/hyprland.conf";
|
|
force = true;
|
|
};
|
|
}
|