feat(nix): install Solaar with correct permissions

This commit is contained in:
spy4x 2024-03-15 12:40:29 +08:00
parent 15e3f11fd8
commit 6324124029

View File

@ -88,6 +88,10 @@ in
pulse.enable = true; pulse.enable = true;
}; };
# Logitech devices manager "Solaar". Gives necessary permissions to run it without "sudo.
hardware.logitech.wireless.enable = true;
hardware.logitech.wireless.enableGraphical = true;
# Define a user account. Don't forget to set a password with passwd. # Define a user account. Don't forget to set a password with passwd.
users.users.spy4x = { users.users.spy4x = {
isNormalUser = true; isNormalUser = true;
@ -126,7 +130,6 @@ in
bitwarden # Password manager client bitwarden # Password manager client
vlc vlc
obs-studio # Video recorder and stream software obs-studio # Video recorder and stream software
solaar # Logitech devices GUI. Strictly use with sudo, otherwise it doesn't see devices.
localsend # Share files/text/data with other devices in local network without internet. OSS alternative to AirDrop. localsend # Share files/text/data with other devices in local network without internet. OSS alternative to AirDrop.
rclone # Sync Google Drive with a local folder rclone # Sync Google Drive with a local folder
]; ];