From 2eaaa57e0814840bcc0675605cb5a1214b4f604e Mon Sep 17 00:00:00 2001
From: Bruce Wang <number5@users.noreply.github.com>
Date: Tue, 19 Nov 2024 15:53:36 +1100
Subject: [PATCH] fix statix checks

---
 home/configurations/catppuccin.nix | 2 +-
 home/modules/home.nix              | 6 +++---
 nixos/modules/system/misc.nix      | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/home/configurations/catppuccin.nix b/home/configurations/catppuccin.nix
index fbe8336..b4a59b3 100644
--- a/home/configurations/catppuccin.nix
+++ b/home/configurations/catppuccin.nix
@@ -1,4 +1,4 @@
-{...}: {
+_: {
   catppuccin.flavor = "mocha";
   gtk.catppuccin.enable = true;
   catppuccin.pointerCursor.enable = false;
diff --git a/home/modules/home.nix b/home/modules/home.nix
index 8d262ba..9911fee 100644
--- a/home/modules/home.nix
+++ b/home/modules/home.nix
@@ -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;
diff --git a/nixos/modules/system/misc.nix b/nixos/modules/system/misc.nix
index fb89550..58d3235 100644
--- a/nixos/modules/system/misc.nix
+++ b/nixos/modules/system/misc.nix
@@ -1,4 +1,4 @@
-{...}: {
+_: {
   # Steam fix
   hardware.graphics.enable32Bit = true;