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

81 lines
2.3 KiB
Nix

{
config,
pkgs,
lib,
user,
flakeRoot,
...
}:
{
# Enable Hyprland
programs.hyprland = {
enable = true;
};
# Home Manager configuration
home-manager.users.${user.username} = {
home.stateVersion = "25.11";
home.username = user.username;
home.homeDirectory =
config.home-manager.users.${user.username}.homeDirectory or "/home/${user.username}";
# Enable Hyprland in Home Manager
wayland.windowManager.hyprland = {
enable = true;
};
# Create all the config files from your assets directory
xdg.configFile = {
# First create the directory
"hypr/.keep" = {
text = "";
};
# Then add all your config files
"hypr/hyprland.conf" = {
source = "${flakeRoot}/assets/hyprland/conf/hypr/hyprland.conf";
};
"hypr/animations.conf" = {
source = "${flakeRoot}/assets/hyprland/conf/hypr/animations.conf";
};
"hypr/behaviour.conf" = {
source = "${flakeRoot}/assets/hyprland/conf/hypr/behaviour.conf";
};
"hypr/bindings.conf" = {
source = "${flakeRoot}/assets/hyprland/conf/hypr/bindings.conf";
};
"hypr/exec-once.conf" = {
source = "${flakeRoot}/assets/hyprland/conf/hypr/exec-once.conf";
};
"hypr/hypridle.conf" = {
source = "${flakeRoot}/assets/hyprland/conf/hypr/hypridle.conf";
};
"hypr/hyprlock.conf" = {
source = "${flakeRoot}/assets/hyprland/conf/hypr/hyprlock.conf";
};
"hypr/layer-rules.conf" = {
source = "${flakeRoot}/assets/hyprland/conf/hypr/layer-rules.conf";
};
"hypr/layout.conf" = {
source = "${flakeRoot}/assets/hyprland/conf/hypr/layout.conf";
};
"hypr/monitor-rules.conf" = {
source = "${flakeRoot}/assets/hyprland/conf/hypr/monitor-rules.conf";
};
"hypr/theming.conf" = {
source = "${flakeRoot}/assets/hyprland/conf/hypr/theming.conf";
};
"hypr/variables.conf" = {
source = "${flakeRoot}/assets/hyprland/conf/hypr/variables.conf";
};
"hypr/window-rules.conf" = {
source = "${flakeRoot}/assets/hyprland/conf/hypr/window-rules.conf";
};
"hypr/workspace-rules.conf" = {
source = "${flakeRoot}/assets/hyprland/conf/hypr/workspace-rules.conf";
};
};
};
}