fix: resolve catppuccin deprecation warnings, use poppins, and replace host with namespace

This commit is contained in:
Jo 2024-12-24 16:59:18 +01:00
parent d543faff8c
commit 9e3a71b35e
3 changed files with 19 additions and 18 deletions

View file

@ -1,17 +1,16 @@
{
lib,
pkgs,
host,
config,
osConfig,
namespace,
...
}: with lib; with lib.${namespace};
let
cfg = config.${host}.desktop.gnome;
cfg = config.${namespace}.desktop.gnome;
in
{
options.${host}.desktop.gnome = with types; {
options.${namespace}.desktop.gnome = with types; {
enabled-extensions = mkOption {
type = listOf package;
default = with pkgs.gnomeExtensions; [ dash-to-dock user-themes blur-my-shell appindicator unite color-picker clipboard-history ];