This commit is contained in:
biscuit
2025-05-13 18:58:32 -05:00
parent d9fc308a51
commit 9423554aa4
4 changed files with 89 additions and 81 deletions
+14 -8
View File
@@ -1,14 +1,20 @@
{ pkgs, ... }: {
home.packages = [
pkgs.hyprland
];
# home.packages = [
# pkgs.hyprland
# ];
programs.hyprland = {
enable = true;
};
# programs.hyprland = {
# enable = true;
# };
home.file."./config/hyprland.conf" = {
source = "./custom/hyprland.conf";
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;
# };
}