feat(nixos:appearance): move appearance options to nixos

This commit is contained in:
ooks-io 2024-08-05 17:29:53 +12:00
parent cedeb52103
commit ceb66c03cf
51 changed files with 393 additions and 377 deletions

View file

@ -1,11 +1,12 @@
{
lib,
config,
osConfig,
...
}: let
inherit (lib) mkIf;
wayland = config.ooknet.wayland;
wallpaperPath = config.ooknet.wallpaper.path;
inherit (config.ooknet) wayland;
wallpaperPath = osConfig.ooknet.appearance.wallpaper.path;
in {
config = mkIf (wayland.compositor == "hyprland") {
services.hyprpaper = {