repo: switch catppuccin flavor to macchiato
This commit is contained in:
parent
368135be31
commit
df1d1381e1
4 changed files with 9 additions and 8 deletions
|
@ -40,7 +40,7 @@
|
||||||
theme = {
|
theme = {
|
||||||
enable = true;
|
enable = true;
|
||||||
name = "catppuccin";
|
name = "catppuccin";
|
||||||
style = "frappe";
|
style = "macchiato";
|
||||||
};
|
};
|
||||||
|
|
||||||
visuals = {
|
visuals = {
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
|
|
||||||
statusline.lualine = {
|
statusline.lualine = {
|
||||||
enable = true;
|
enable = true;
|
||||||
theme = "catppuccin";
|
theme = "auto";
|
||||||
};
|
};
|
||||||
|
|
||||||
git.enable = true;
|
git.enable = true;
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
inputs,
|
inputs,
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
nixosConfig,
|
osConfig,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
colors = inputs.basix.schemeData.base16.${nixosConfig.style.scheme}.palette;
|
colors = inputs.basix.schemeData.base16.${osConfig.style.scheme}.palette;
|
||||||
in {
|
in {
|
||||||
imports = [./binds.nix];
|
imports = [./binds.nix];
|
||||||
programs.niri = {
|
programs.niri = {
|
||||||
|
|
|
@ -13,7 +13,8 @@ in {
|
||||||
Name of the tinted-scheming color scheme to use.
|
Name of the tinted-scheming color scheme to use.
|
||||||
'';
|
'';
|
||||||
type = string;
|
type = string;
|
||||||
example = lib.literalExpression "catppuccin-frappe";
|
example = lib.literalExpression "catppuccin-macchiato";
|
||||||
|
default = "catppuccin-macchiato";
|
||||||
};
|
};
|
||||||
wallpaper = mkOption {
|
wallpaper = mkOption {
|
||||||
description = ''
|
description = ''
|
||||||
|
|
|
@ -16,7 +16,7 @@ in {
|
||||||
name = mkOption {
|
name = mkOption {
|
||||||
type = str;
|
type = str;
|
||||||
description = "Name for the GTK theme";
|
description = "Name for the GTK theme";
|
||||||
default = "catppuccin-frappe-lavender-standard";
|
default = "catppuccin-macchiato-lavender-standard";
|
||||||
};
|
};
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
type = package;
|
type = package;
|
||||||
|
@ -24,7 +24,7 @@ in {
|
||||||
|
|
||||||
default = pkgs.catppuccin-gtk.override {
|
default = pkgs.catppuccin-gtk.override {
|
||||||
# https://github.com/NixOS/nixpkgs/blob/nixos-23.05/pkgs/data/themes/catppuccin-gtk/default.nix
|
# https://github.com/NixOS/nixpkgs/blob/nixos-23.05/pkgs/data/themes/catppuccin-gtk/default.nix
|
||||||
variant = "frappe";
|
variant = "macchiato";
|
||||||
accents = ["lavender"];
|
accents = ["lavender"];
|
||||||
size = "standard";
|
size = "standard";
|
||||||
};
|
};
|
||||||
|
@ -42,7 +42,7 @@ in {
|
||||||
description = "The GTK icon theme to be used";
|
description = "The GTK icon theme to be used";
|
||||||
default = pkgs.catppuccin-papirus-folders.override {
|
default = pkgs.catppuccin-papirus-folders.override {
|
||||||
accent = "lavender";
|
accent = "lavender";
|
||||||
flavor = "frappe";
|
flavor = "macchiato";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue