Skip to content

Commit

Permalink
fix statix checks
Browse files Browse the repository at this point in the history
  • Loading branch information
number5 committed Nov 19, 2024
1 parent a9ff653 commit 2eaaa57
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion home/configurations/catppuccin.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{...}: {
_: {
catppuccin.flavor = "mocha";
gtk.catppuccin.enable = true;
catppuccin.pointerCursor.enable = false;
Expand Down
6 changes: 3 additions & 3 deletions home/modules/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@

pointerCursor = {
gtk.enable = true;
name = cursor.name;
package = cursor.package;
size = cursor.size;
inherit (cursor) name;
inherit (cursor) package;
inherit (cursor) size;
x11 = {
defaultCursor = cursor.name;
enable = true;
Expand Down
2 changes: 1 addition & 1 deletion nixos/modules/system/misc.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{...}: {
_: {
# Steam fix
hardware.graphics.enable32Bit = true;

Expand Down

0 comments on commit 2eaaa57

Please sign in to comment.