Compare commits

..

4 commits

Author SHA1 Message Date
cd2536b158
fix: Remove reference to deleted aerc module
Some checks are pending
CI / Format Nix files (push) Waiting to run
CI / Test Modules (push) Waiting to run
CI / Validate sources (push) Waiting to run
Release / Make release (push) Waiting to run
Release / Publish to Flake registries (push) Blocked by required conditions
Build & deploy website / Build site (push) Waiting to run
Build & deploy website / Deploy website (push) Blocked by required conditions
2024-10-19 17:27:11 -07:00
dabbef32d5
feat: Switch to Rose Pine readme
Some checks are pending
Release / Make release (push) Waiting to run
Release / Publish to Flake registries (push) Blocked by required conditions
2024-10-19 17:12:35 -07:00
84bf107f49
feat(bat): Switch to Rose Pine
Some checks are pending
CI / Format Nix files (push) Waiting to run
CI / Test Modules (push) Waiting to run
CI / Validate sources (push) Waiting to run
Release / Make release (push) Waiting to run
Release / Publish to Flake registries (push) Blocked by required conditions
Build & deploy website / Build site (push) Waiting to run
Build & deploy website / Deploy website (push) Blocked by required conditions
2024-10-19 11:24:15 -07:00
c2d446f07d
feat(alacritty): Switch to Rose Pine 2024-10-19 11:15:31 -07:00
5 changed files with 45 additions and 37 deletions

View file

@ -40,25 +40,25 @@
"type": "Git",
"repository": {
"type": "GitHub",
"owner": "rose-pine",
"owner": "catppuccin",
"repo": "btop"
},
"branch": "main",
"revision": "6d6abdc0a8c8bcd3b056d9fe3256cfbe7e359312",
"url": "https://github.com/rose-pine/btop/archive/6d6abdc0a8c8bcd3b056d9fe3256cfbe7e359312.tar.gz",
"hash": "15s3llr9snrg30fh39a2gfzmjd8p5ki8vaggznm9jirjzdhm0a5i"
"revision": "21b8d5956a8b07fa52519e3267fb3a2d2e693d17",
"url": "https://github.com/catppuccin/btop/archive/21b8d5956a8b07fa52519e3267fb3a2d2e693d17.tar.gz",
"hash": "1hdh78314axpz96qvnl7dkgjd3b7sjq0l8k5h1iwir1mjz596xsi"
},
"cava": {
"type": "Git",
"repository": {
"type": "GitHub",
"owner": "rose-pine",
"owner": "catppuccin",
"repo": "cava"
},
"branch": "main",
"revision": "f9a915563d281d4a58e6f9fe701bdb769f1bbf26",
"url": "https://github.com/rose-pine/cava/archive/f9a915563d281d4a58e6f9fe701bdb769f1bbf26.tar.gz",
"hash": "06qzrlbj2kzrbrq6ag9kha0yx3yvixsz79p7x4ib2dxl9rkxk7gf"
"revision": "0746f77974330338ee2e1e4d1ef9872eba57eb26",
"url": "https://github.com/catppuccin/cava/archive/0746f77974330338ee2e1e4d1ef9872eba57eb26.tar.gz",
"hash": "01jvxv797zvamwm82m5i1m9b92hm1bcjdr2w53wi60ws244iq174"
},
"delta": {
"type": "Git",

View file

@ -1,6 +1,7 @@
[
./alacritty.nix
./bat.nix
./bottom.nix
./btop.nix
./cava.nix
./cursor.nix

View file

@ -0,0 +1,15 @@
{ config, lib, ... }:
let
inherit (config.catppuccin) sources;
cfg = config.programs.bottom.catppuccin;
enable = cfg.enable && config.programs.bottom.enable;
in
{
options.programs.bottom.catppuccin = lib.ctp.mkCatppuccinOpt { name = "bottom"; };
config = lib.mkIf enable {
programs.bottom = {
settings = lib.importTOML "${sources.bottom}/themes/${cfg.flavor}.toml";
};
};
}

View file

@ -1,23 +1,18 @@
{
config,
lib,
...
}: let
inherit (config.rose-pine) sources;
cfg = config.programs.btop.rose-pine;
{ config, lib, ... }:
let
inherit (config.catppuccin) sources;
cfg = config.programs.btop.catppuccin;
enable = cfg.enable && config.programs.btop.enable;
themeFile =
if (cfg.flavor == "main")
then "rose-pine.theme"
else "rose-pine-${cfg.flavor}.theme";
themePath = "/${themeFile}";
themeFile = "catppuccin_${cfg.flavor}.theme";
themePath = "/themes/${themeFile}";
theme = sources.btop + themePath;
in {
options.programs.btop.rose-pine = lib.rp.mkRosePineOpt {name = "btop";};
in
{
options.programs.btop.catppuccin = lib.ctp.mkCatppuccinOpt { name = "btop"; };
config = lib.mkIf enable {
xdg.configFile."btop/themes${themePath}".source = theme;
xdg.configFile."btop${themePath}".source = theme;
programs.btop.settings.color_theme = themeFile;
};

View file

@ -1,19 +1,16 @@
{
config,
lib,
...
}: let
inherit (config.rose-pine) sources;
cfg = config.programs.cava.rose-pine;
{ config, lib, ... }:
let
inherit (config.catppuccin) sources;
cfg = config.programs.cava.catppuccin;
enable = cfg.enable && config.programs.cava.enable;
flavor =
if (cfg.flavor == "main")
then "rosepine"
else cfg.flavor;
in {
options.programs.cava.rose-pine = lib.rp.mkRosePineOpt {name = "cava";};
flavor = "${cfg.flavor}" + lib.optionalString cfg.transparent "-transparent";
in
{
options.programs.cava.catppuccin = lib.ctp.mkCatppuccinOpt { name = "cava"; } // {
transparent = lib.mkEnableOption "transparent version of flavor";
};
config.programs.cava = lib.mkIf enable {
settings = lib.rp.fromINIRaw (sources.cava + "/${flavor}.cava");
settings = lib.ctp.fromINIRaw (sources.cava + "/themes/${flavor}.cava");
};
}