feat(newsboat): Remove Newsboat

This commit is contained in:
punkfairie 2024-10-20 11:18:01 -07:00
parent 707617832c
commit bf5eb17672
Signed by: punkfairie
GPG key ID: 01823C057725C266
3 changed files with 0 additions and 29 deletions

View file

@ -216,18 +216,6 @@
"url": "https://github.com/catppuccin/mpv/archive/7b93fb0febd0490a8ccfe3077ab7741a9b4ef44a.tar.gz",
"hash": "1wzahqxqrblalkcxi4ll05vi5rhmsm3z4mk7d96rfka2c38wc5wj"
},
"newsboat": {
"type": "Git",
"repository": {
"type": "GitHub",
"owner": "catppuccin",
"repo": "newsboat"
},
"branch": "main",
"revision": "be3d0ee1ba0fc26baf7a47c2aa7032b7541deb0f",
"url": "https://github.com/catppuccin/newsboat/archive/be3d0ee1ba0fc26baf7a47c2aa7032b7541deb0f.tar.gz",
"hash": "04ib4lvma5959n943f7myzbc2blmb8n2dd7bkb0xgl2rnpfx2fvk"
},
"nvim": {
"type": "Git",
"repository": {
@ -459,4 +447,3 @@
},
"version": 3
}

View file

@ -15,7 +15,6 @@
./hyprland.nix
./k9s.nix
./kitty.nix
./newsboat.nix
./mako.nix
./micro.nix
./mpv.nix

View file

@ -1,15 +0,0 @@
{ config, lib, ... }:
let
inherit (config.catppuccin) sources;
cfg = config.programs.newsboat.catppuccin;
enable = cfg.enable && config.programs.newsboat.enable;
theme = if cfg.flavor == "latte" then "latte" else "dark";
in
{
options.programs.newsboat.catppuccin = lib.ctp.mkCatppuccinOpt { name = "newsboat"; };
config = lib.mkIf enable {
programs.newsboat.extraConfig = builtins.readFile "${sources.newsboat}/themes/${theme}";
};
}