--- a/nala/utils.py
+++ b/nala/utils.py
@@ -169,7 +169,7 @@
 	@staticmethod
 	def is_su() -> bool:
 		"""Return True if we're super user and False if we're not."""
-		return os.geteuid() == 0
+		return True
 
 
 class DelayedKeyboardInterrupt: