Skip to content

Commit

Permalink
fix catpuncchi cursor deps error
Browse files Browse the repository at this point in the history
  • Loading branch information
number5 committed Nov 17, 2024
1 parent b537b41 commit d0c2144
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@

outputs = {parts, ...} @ inputs:
parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux" "aarch64-darwin"];
systems = ["x86_64-linux"];

perSystem = {
config,
Expand Down
2 changes: 2 additions & 0 deletions home/configurations/bruce_at_chestnut.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@

modules.eww.enable = true;

home.enableNixpkgsReleaseCheck = false;

home.packages = builtins.attrValues {
inherit (pkgs) neovim;
};
Expand Down
1 change: 1 addition & 0 deletions home/configurations/catppuccin.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{...}: {
catppuccin.flavor = "mocha";
gtk.catppuccin.enable = true;
catppuccin.pointerCursor.enable = false;
programs.bat.catppuccin.enable = true;
programs.starship.catppuccin.enable = true;
services.polybar.catppuccin.enable = true;
Expand Down
6 changes: 4 additions & 2 deletions home/modules/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@

home = let
cursor = {
package = pkgs.catppuccin-cursors.macchiatoTeal;
name = "catppuccin-macchiato-teal-cursors";
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Amber";
# package = pkgs.catppuccin-cursors.macchiatoTeal;
# name = "catppuccin-macchiato-teal-cursors";
size = 24;
};
in {
Expand Down

0 comments on commit d0c2144

Please sign in to comment.