Files
nixos/Droidnix/generated/hyprland/hyprland.nix
T
2026-03-15 12:06:30 +00:00

49 lines
1.2 KiB
Nix

{
config,
pkgs,
lib,
user,
flakeRoot,
...
}:
let
hyprlandConfigDir = "${config.home-manager.users.${user.username}.xdg.configHome}/hypr";
files = builtins.attrNames (builtins.readDir "${flakeRoot}/assets/hyprland/conf/hypr");
hyprlandConfs = lib.genAttrs files (name: {
text = builtins.readFile "${flakeRoot}/assets/hyprland/conf/hypr/${name}";
});
in
{
# NixOS: Enable Hyprland
programs.hyprland = {
enable = true;
};
# Home Manager: Hyprland-specific configurations
home-manager.users.${user.username} = {
home.stateVersion = config.home-manager.users.${user.username}.stateVersion or "25.11";
home.username = user.username;
home.homeDirectory =
config.home-manager.users.${user.username}.homeDirectory or "/home/${user.username}";
wayland.windowManager.hyprland = {
enable = true;
};
# Ensure the Hyprland config directory exists and include all files
xdg.configFile = {
"hypr/.keep" = {
text = "";
};
}
// hyprlandConfs;
};
# Manually copy files using a shell command
system.activationScripts.copyHyprlandFiles = ''
mkdir -p ~/.config/hypr/
cp ${flakeRoot}/assets/hyprland/conf/hypr/* ~/.config/hypr/
'';
}