feat(glamour): Remove Glamour

This commit is contained in:
punkfairie 2024-10-19 22:04:40 -07:00
parent 9e2b868081
commit 14e660df08
Signed by: punkfairie
GPG key ID: 01823C057725C266
2 changed files with 0 additions and 16 deletions

View file

@ -9,7 +9,6 @@
./fish.nix
./foot.nix
./fzf.nix
./glamour.nix
./globals.nix
./gtk.nix
./helix.nix

View file

@ -1,15 +0,0 @@
{ config, lib, ... }:
let
inherit (config.catppuccin) sources;
cfg = config.programs.glamour.catppuccin;
inherit (cfg) enable;
in
{
options.programs.glamour.catppuccin = lib.ctp.mkCatppuccinOpt { name = "glamour"; };
config = {
home.sessionVariables = lib.mkIf enable {
GLAMOUR_STYLE = "${sources.glamour}/themes/catppuccin-${cfg.flavor}.json";
};
};
}