Jump to content

GNOME: Difference between revisions

826 bytes added ,  12 February 2023
imported>Rapenne-s
m (Gnome extension manager is installed by default now)
imported>Vater
(→‎Troubleshoots: autoLogin on GNOME)
Line 95: Line 95:


== Troubleshoots ==
== Troubleshoots ==
=== Change user's profile picture ===
=== Change user's profile picture ===
Currently there is no way to change the user's profile picture using Gnome Control Center [https://github.com/NixOS/nixpkgs/issues/10025 (see this issue)] and currently there is no plan to support it officially in NixOS.
Currently there is no way to change the user's profile picture using Gnome Control Center [https://github.com/NixOS/nixpkgs/issues/10025 (see this issue)] and currently there is no plan to support it officially in NixOS.
Line 102: Line 103:
mv /path/to/image.jpg ~/.face
mv /path/to/image.jpg ~/.face
</syntaxHighlight>
</syntaxHighlight>
=== automatic login ===
If you have enabled [https://help.gnome.org/admin/system-admin-guide/stable/login-automatic.html.en auto login] (with <!-- [[GDM]] -->[[{{PAGENAME}}]]) with something like
: <syntaxHighlight lang=bash>grep autoLogin /etc/nixos/configuration.nix</syntaxHighlight>
<syntaxHighlight lang=bash>
services.xserver.displayManager.autoLogin.enable = true;
services.xserver.displayManager.autoLogin.user = "account";
</syntaxHighlight>
than add the following (as a workaround for a current (2023)<ref>https://github.com/NixOS/nixpkgs/issues/103746#issuecomment-945091229</ref> problem)
: <syntaxHighlight lang=bash>nano /etc/nixos/configuration.nix</syntaxHighlight>
<syntaxHighlight lang=nix>
systemd.services."getty@tty1".enable = false;
systemd.services."autovt@tty1".enable = false;
</syntaxHighlight>
.


== Also see ==
== Also see ==
Anonymous user