feat(Hyprland): add extraConfig option

This commit is contained in:
Alexandre Cavalheiro 2024-09-17 11:31:06 -03:00
parent 9e271f8c52
commit 7943f84712
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF

View file

@ -1,4 +1,18 @@
{ config, lib, ... }:
{
options.modules.hyprland.extraConfig = lib.mkOption {
type = lib.types.str;
default = "";
example = # hyprlang
''
monitor = DP-3, 1920x1080@74.973, 2560x0, 1
monitor = DP-2, 2560x1440@165.00301, 0x0, 1
'';
description = "Configuration to be appended to my own.";
};
config = {
xdg.configFile."hypr/frappe.conf".source = builtins.fetchurl {
url = "https://raw.githubusercontent.com/catppuccin/hyprland/main/themes/frappe.conf";
sha256 = "1clw669i1n3dhawdw4clmjv75fy3smycb5iqk3sanzpr3y0i4vwx";
@ -128,6 +142,7 @@
xdg.configFile."hypr/hyprland.conf".text = # hyprlang
''
source = $HOME/.config/hypr/frappe.conf
${config.modules.hyprland.extraConfig}
#
# Please note not all available settings / options are set here.
@ -136,10 +151,6 @@
autogenerated = 0 # remove this line to remove the warning
# See https://wiki.hyprland.org/Configuring/Monitors/
monitor = DP-3, 1920x1080@74.973, 2560x0, 1
monitor = DP-2, 2560x1440@165.00301, 0x0, 1
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
# Inject home-manager session variables
@ -358,4 +369,5 @@
windowrulev2 = noblur, tag:gw2
windowrulev2 = noborder, tag:gw2
'';
};
}