hyprland update to latest stuff

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-09-28 23:25:25 -05:00
parent 4015310d8f
commit aee99712f8
14 changed files with 1269 additions and 189 deletions

View file

@ -0,0 +1,22 @@
{
osConfig,
lib,
...
}:
let
ccfg = import ../../../config.nix;
cfg_path = [
ccfg.custom_config_key
"desktopEnvironment"
"hyprland"
];
cfg = lib.attrsets.getAttrFromPath cfg_path osConfig;
in
{
config = {
services.hyprpaper = {
enable = true;
settings = cfg.hyprpaperSettings;
};
};
}