Skip to content

Commit

Permalink
Enable catppuccin globally
Browse files Browse the repository at this point in the history
  • Loading branch information
samhh committed Sep 7, 2024
1 parent e641a53 commit c973b28
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 12 deletions.
5 changes: 1 addition & 4 deletions home/cli.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
{ pkgs, pkgs-unstable, ... }:

{
programs.bat = {
enable = true;
catppuccin.enable = true;
};
programs.bat.enable = true;

home.packages = with pkgs; [
pkgs-unstable.ast-grep
Expand Down
1 change: 0 additions & 1 deletion home/editor.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
programs.helix = {
enable = true;
package = pkgs-unstable.helix;
catppuccin.enable = true;

settings = {
editor = {
Expand Down
1 change: 0 additions & 1 deletion home/shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ in
{
programs.fish = {
enable = true;
catppuccin.enable = true;

# Nota bene the incompatibililty between nixpkgs fish plugins and
# home-manager:
Expand Down
1 change: 0 additions & 1 deletion home/terminal.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
{
programs.kitty = {
enable = true;
catppuccin.enable = true;
font = {
package = pkgs.hasklig;
name = "Hasklig Regular";
Expand Down
5 changes: 4 additions & 1 deletion home/theme.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{ ... }:

{
catppuccin.flavor = "mocha";
catppuccin = {
enable = true;
flavor = "mocha";
};
programs.glamour.catppuccin.enable = true;
}
5 changes: 1 addition & 4 deletions home/vcs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,7 @@ in
programs.git = {
enable = true;

delta = {
enable = true;
catppuccin.enable = true;
};
delta.enable = true;

extraConfig = {
push.default = "simple";
Expand Down

0 comments on commit c973b28

Please sign in to comment.