Regenerated

This commit is contained in:
2026-03-21 20:29:26 +00:00
parent 0acd760fb4
commit 139f74ddce
30 changed files with 16 additions and 1463 deletions
@@ -1,21 +0,0 @@
{ lib, config, pkgs, ... }:
let
username = config.defaultUser or "henrov";
assetPath = ../../../assets/hyprland/conf/hypr;
mainConfig = "${assetPath}/hyprland.conf";
in
{
# Home Manager user settings
_module.args.hmUsers = {
${username} = {
home.packages = [ pkgs.hyprland ];
# Copy main config into ~/.config/hypr
home.file.".config/hypr/hyprland.conf".source = mainConfig;
# Optional: extend settings for this module
settings.general."col.active_border" = "0xff97cbcd 0xff89b4fa";
};
};
}