Jump to content

GNOME: Difference between revisions

m
Small changes
m (added lockAll to system-wide extension configuration example)
m (Small changes)
Line 24: Line 24:
{
{
   environment.gnome.excludePackages = (with pkgs; [
   environment.gnome.excludePackages = (with pkgs; [
     # for packages that are pkgs.***
     # for packages that are pkgs.*
     gnome-tour
     gnome-tour
     gnome-connections
     gnome-connections
Line 255: Line 255:


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
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">
: <syntaxHighlight lang="console">
grep autoLogin /etc/nixos/configuration.nix
$ grep autoLogin /etc/nixos/configuration.nix
</syntaxHighlight>
</syntaxHighlight>
<syntaxHighlight lang="nix">
<syntaxHighlight lang="nix">
Line 263: Line 263:
</syntaxHighlight>
</syntaxHighlight>
than add the following (as a workaround for a current (2023)<ref>https://github.com/NixOS/nixpkgs/issues/103746#issuecomment-945091229</ref> problem)
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=console># nano /etc/nixos/configuration.nix</syntaxHighlight>
: <syntaxHighlight lang="console"># nano /etc/nixos/configuration.nix</syntaxHighlight>
<syntaxHighlight lang="nix">
<syntaxHighlight lang="nix">
{
   systemd.services."getty@tty1".enable = false;
   systemd.services."getty@tty1".enable = false;
   systemd.services."autovt@tty1".enable = false;
   systemd.services."autovt@tty1".enable = false;
}
</syntaxHighlight>
</syntaxHighlight>


== Also see ==
== See also ==
 
* [[GNOME/Calendar]]
[[GNOME/Calendar]]


[[Category:Desktop environment]]
[[Category:Desktop environment]]
[[Category:Applications]]
[[Category:Applications]]
[[Category:NixOS Manual]]
[[Category:NixOS Manual]]