GNOME: Difference between revisions

From NixOS Wiki
m (removed blank line)
 
(17 intermediate revisions by 6 users not shown)
Line 1: Line 1:
[[{{PAGENAME}}]] (/(ɡ)noʊm/) is a [[desktop environment]] known for its focus on being simple, intuitive, and easy to use. It is made by The GNOME Project and is composed entirely of free and open-source software. Its Mutter compositor supports both [[Wayland]] and X server, and the GNOME Shell user interface is customizable by extensions.


[https://gnome.org/ {{PAGENAME}}] ([[wikipedia:en:{{PAGENAME}}]]) is available as a [[module]] (and also especially as a module for <code>services.xserver.desktopManager</code>).
This article is an extension of the documentation in the [https://nixos.org/manual/nixos/stable/#chap-gnome NixOS manual].


[[{{PAGENAME}}]] (/(ɡ)noʊm/) is a [[desktop environment]] that aims to be simple and easy to use. It is designed by The GNOME Project and is composed entirely of free and open-source software. GNOME is a part of the GNU Project.
[https://gnome.org/ {{PAGENAME}}] is available as a [[module]] and can be enabled with <code>services.xserver.desktopManager</code>.


== Installation ==
== Installation ==


To use GNOME, add this to your configuration.nix:
To use GNOME, add this to your <code>configuration.nix</code>:


<syntaxHighlight lang=nix>
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
services.xserver.enable = true;
{
services.xserver.displayManager.gdm.enable = true;
  services.xserver.enable = true;
services.xserver.desktopManager.gnome.enable = true;
  services.xserver.displayManager.gdm.enable = true;
</syntaxHighlight>
  services.xserver.desktopManager.gnome.enable = true;
}
</nowiki>}}


=== Excluding some GNOME applications from the default install ===
=== Excluding GNOME Applications ===


Not all applications that come pre-installed with the GNOME desktop environment are desirable for everyone to have on their machines. There's a way to edit {{ic|configuration.nix}} to exclude these kinds of packages, for example as follows:
To exclude certain applications that are installed by default with GNOME edit <code>configuration.nix</code> as follows:


<syntaxHighlight lang=nix>
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
environment.gnome.excludePackages = (with pkgs; [
{
  gnome-photos
  environment.gnome.excludePackages = (with pkgs; [
  gnome-tour
    # for packages that are pkgs.*
]) ++ (with pkgs.gnome; [
    gnome-tour
  cheese # webcam tool
    gnome-connections
  gnome-music
  ]) ++ (with pkgs.gnome; [
  gnome-terminal
    # for packages that are pkgs.gnome.*
  gedit # text editor
    epiphany # web browser
  epiphany # web browser
    geary # email reader
  geary # email reader
    evince # document viewer
  evince # document viewer
   ]);
   gnome-characters
}
  totem # video player
</nowiki>}}
  tali # poker game
  iagno # go game
  hitori # sudoku game
  atomix # puzzle game
]);
</syntaxHighlight>


== Configuration ==
== Configuration ==
Line 43: Line 40:
=== Managing extensions ===
=== Managing extensions ===


GNOME extensions are managed and configured by the program "Extension" that comes with GNOME.
GNOME extensions are managed and configured by the program "Extensions" that comes with GNOME. Some of them can be installed with Nix, however they aren't enabled by default. To enable them the "Extensions" program can be used.
 
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
{
  environment.systemPackages = with pkgs.gnomeExtensions; [
    blur-my-shell
    pop-shell
    # ...
  ];
}
</nowiki>}}
 
Installed extensions can be enabled and configured in Extension app that comes preinstalled with GNOME. If you want to do that declaratively in your configuration, you can use [[Home Manager]] <code>dconf</code> module by adding following lines.
 
{{file|~/.config/home-manager/home.nix|nix|<nowiki>
{
  dconf = {
    enable = true;
    settings = {
      "org/gnome/shell" = {
        disable-user-extensions = false; # enables user extensions
        enabled-extensions = [
          # Put UUIDs of extensions that you want to enable here.
          # If the extension you want to enable is packaged in nixpkgs,
          # you can easily get its UUID by accessing its extensionUuid
          # field (look at the following example).
          pkgs.gnomeExtensions.gsconnect.extensionUuid
         
          # Alternatively, you can manually pass UUID as a string. 
          "blur-my-shell@aunetx"
          # ...
        ];
      };
 
      # Configure individual extensions
      "org/gnome/shell/extensions/blur-my-shell" = {
        brightness = 0.75;
        noise-amount = 0;
      };
    };
  };
}
</nowiki>}}
 
=== dconf settings ===
 
Most of the GNOME settings are stored in [https://en.wikipedia.org/wiki/Dconf dconf] database. Settings are stored as keys placed in folders.
 
To learn about settings that can be configured with dconf either look into <code>dconf-editor</code> program (provided by <code>gnome.dconf-editor</code> package) or type <code>dconf watch /</code> in the terminal and change settings from the GUI and see which options are responsible for that component/element.
 
These settings can be changed by NixOS via <code>programs.dconf</code> module or by [[Home Manager]] via <code>dconf</code> module. To so in Home Manager, you need to change <code>dconf.settings</code> attribute set. This attribute set contains absolute folder paths (without leading slash) as attributes' names which value is another attribute set with keys (settings).
 
For example, to change the value of <code>clock-show-weekday</code> key that is located in <code>/org/gnome/desktop/interface</code>, you need to the following:
 
{{file|~/.config/home-manager/home.nix|nix|<nowiki>
{
  dconf.settings = {
    enable = true;
 
    # You need quotes to escape '/'
    "org/gnome/desktop/interface" = {
      clock-show-weekday = true;
    };
  };
}
</nowiki>}}
 
Same can be achieved by using system configuration.
 
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
{
  programs.dconf = {
    enable = true;
    profiles.user.databases = [
      {
        lockAll = true; # prevents overriding
        settings = {
          "org/gnome/desktop/interface" = {
            clock-show-weekday = true;
          };
        };
      }
    ];
  };
}
</nowiki>}}


Extensions to be installed system-wide by adding them to NixOS configuration in {{ic|environment.systemPackages}} or per-user, or from the GNOME extensions website using a Web browser extension.
{{Note|Since dconf have more data types than Nix language (for example, tuples), in some cases you'll need to convert Nix value to a GVariant value. You can achieve that by using function defined in <code>lib.gvariant</code>, they're documented [https://nixos.org/manual/nixpkgs/stable/#sec-functions-library-gvariant here].}}


=== Dark mode ===
=== Dark mode ===


Change default color theme for all GTK4 applications to dark using [[Home Manager]]. Change <code>myuser</code> to the user you want to apply the configuration to.
Change default color theme for all GTK4 applications to dark using [[Home Manager]].


<syntaxHighlight lang=nix>
{{file|~/.config/home-manager/home.nix|nix|<nowiki>
home-manager.users.myuser = {
{
   dconf = {
   dconf = {
     enable = true;
     enable = true;
     settings."org/gnome/desktop/interface".color-scheme = "prefer-dark";
     settings."org/gnome/desktop/interface".color-scheme = "prefer-dark";
   };
   };
};
}
</syntaxHighlight>
</nowiki>}}


== Tips and tricks ==
== Tips and tricks ==


=== Running GNOME programs outside of GNOME ===
=== To run GNOME programs outside of GNOME ===


While we are packaging GNOME platform-based applications to be largely [https://nixos.org/nixpkgs/manual/#sec-language-gnome self-contained], they still depend, for one reason or another, on some global configuration. The {{ic|gnome.nix}} module sets all the necessary options for you but if you are running customized set-up, you might need to replicate that yourself.
GNOME platform-based applications are largely [https://nixos.org/nixpkgs/manual/#sec-language-gnome self-contained], but they still depend, for one reason or another, on some global configuration. The {{ic|gnome.nix}} module sets all the necessary options for you but if you are running customized set-up, you might need to replicate that yourself.


For instance, if you see the following error:
For instance, if you see the following error:


<syntaxHighlight lang=text>
<syntaxhighlight lang="text">
dconf-WARNING **: failed to commit changes to dconf: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name ca.desrt.dconf was not provided by any .service files
dconf-WARNING **: failed to commit changes to dconf: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name ca.desrt.dconf was not provided by any .service files
</syntaxHighlight>
</syntaxhighlight>


you should enable dconf module:
you should enable dconf module:


<syntaxHighlight lang=nix>
<syntaxHighlight lang="nix">
programs.dconf.enable = true;
{
  programs.dconf.enable = true;
}
</syntaxHighlight>
</syntaxHighlight>


Many applications rely heavily on having an icon theme available, GNOME’s Adwaita is a good choice but most recent icon themes should work as well.
Many applications rely heavily on having an icon theme available, GNOME’s Adwaita is a good choice but most recent icon themes should work as well.


<syntaxHighlight lang=nix>
<syntaxHighlight lang="nix">
environment.systemPackages = [ gnome.adwaita-icon-theme ];
{
  environment.systemPackages = with pkgs; [ gnome.adwaita-icon-theme ];
}
</syntaxHighlight>
</syntaxHighlight>


=== Systray Icons ===
=== Systray Icons ===


To get systray icons, install the related gnome shell extension
To get systray icons, install the related GNOME shell extension


<syntaxHighlight lang=nix>
<syntaxHighlight lang="nix">
environment.systemPackages = with pkgs; [ gnomeExtensions.appindicator ];
{
  environment.systemPackages = [ pkgs.gnomeExtensions.appindicator ];
}
</syntaxHighlight>
</syntaxHighlight>


And ensure gnome-settings-daemon udev rules are enabled :
And ensure gnome-settings-daemon udev rules are enabled:


<syntaxHighlight lang=nix>
<syntaxHighlight lang="nix">
services.udev.packages = with pkgs; [ gnome.gnome-settings-daemon ];
{
  services.udev.packages = [ pkgs.gnome.gnome-settings-daemon ];
}
</syntaxHighlight>
</syntaxHighlight>


=== Running ancient applications ===
=== To run old applications ===


Long ago, in the GNOME 2 era, applications used GConf service to store configuration. This has been deprecated for many years but some applications were abandoned before they managed to upgrade to a newer dconf system. If you are running such application and getting an error like:
Some old applications use GConf service to store configuration. This has been deprecated for many years but some applications were abandoned before they managed to upgrade to a newer dconf system. If you are running such application and getting an error like:


<syntaxHighlight lang=text>
<syntaxHighlight lang="text">
GLib.GException: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information
GLib.GException: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information
</syntaxHighlight>
</syntaxHighlight>
Line 108: Line 198:
you need to add {{ic|gnome2.GConf}} to the list of dbus packages in your {{ic|configuration.nix}}:
you need to add {{ic|gnome2.GConf}} to the list of dbus packages in your {{ic|configuration.nix}}:


<syntaxHighlight lang=nix>
<syntaxHighlight lang="nix">
services.dbus.packages = with pkgs; [ gnome2.GConf ];
{
  services.dbus.packages = with pkgs; [ gnome2.GConf ];
}
</syntaxHighlight>
</syntaxHighlight>


After applying the update one also has restart their desktop session to refresh the user-specific dbus session.
After applying the update restart your desktop session to refresh the user-specific dbus session.


=== Dynamic triple buffering ===
=== Dynamic triple buffering ===
{{Warning|Dynamic triple buffering is a still developing feature that is not merged into GNOME's mutter. Some bugs and unexpected behavior can occur. Use at your own risk!}}


Big [https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1441 merge request] against Mutter improves the performance of the window manager by a lot (and is already used by Ubuntu). Not merged into nixpkgs due to [https://github.com/NixOS/nixpkgs/issues/197181 philosophy of nixpkgs], but users are free to add this overlay to get it too.
Big [https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1441 merge request] against Mutter improves the performance of the window manager by a lot (and is already used by Ubuntu). Not merged into nixpkgs due to [https://github.com/NixOS/nixpkgs/issues/197181 philosophy of nixpkgs], but users are free to add this overlay to get it too.


Currently it's adapted for Gnome 45.
If you wish to try this patch for yourself, add the following to your NixOS configuration:


<syntaxHighlight lang=nix>
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
nixpkgs.overlays = [
{
  (final: prev: {
  nixpkgs.overlays = [
    gnome = prev.gnome.overrideScope' (gnomeFinal: gnomePrev: {
    # GNOME 46: triple-buffering-v4-46
      mutter = gnomePrev.mutter.overrideAttrs ( old: {
    (final: prev: {
        src = pkgs.fetchgit {
      gnome = prev.gnome.overrideScope (gnomeFinal: gnomePrev: {
          url = "https://gitlab.gnome.org/vanvugt/mutter.git";
        mutter = gnomePrev.mutter.overrideAttrs (old: {
          # GNOME 45: triple-buffering-v4-45
          src = pkgs.fetchFromGitLab  {
          rev = "0b896518b2028d9c4d6ea44806d093fd33793689";
            domain = "gitlab.gnome.org";
          sha256 = "sha256-mzNy5GPlB2qkI2KEAErJQzO//uo8yO0kPQUwvGDwR4w=";
            owner = "vanvugt";
         };
            repo = "mutter";
       } );
            rev = "triple-buffering-v4-46";
     });
            hash = "sha256-fkPjB/5DPBX06t7yj0Rb3UEuu5b9mu3aS+jhH18+lpI=";
   })
          };
];
         });
</syntaxHighlight>
       });
     })
   ];
}
</nowiki>}}


You might need to disable aliases to make it work:
You might need to disable aliases to make it work:


<syntaxHighlight lang=nix>
<syntaxHighlight lang="nix">
nixpkgs.config.allowAliases = false;
  nixpkgs.config.allowAliases = false;
</syntaxHighlight>
</syntaxHighlight>


Line 147: Line 245:
Install {{ic|sysprof}} as a ''system'' package (it won't work properly if installed against users). Then enable the associated service with  
Install {{ic|sysprof}} as a ''system'' package (it won't work properly if installed against users). Then enable the associated service with  


<syntaxHighlight lang=nix>
<syntaxHighlight lang="nix">
services.sysprof.enable = true;
  services.sysprof.enable = true;
</syntaxHighlight>
 
=== Automatic screen rotation ===
 
<syntaxHighlight lang="nix">
  hardware.sensor.iio.enable = true;
</syntaxHighlight>
</syntaxHighlight>


Line 154: Line 258:


=== 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. However, you can modify it by copying the profile picture that you want to the path '''/home/$USER/.face''' as a workaround, i.e.
However, you can modify it by copying the profile picture that you want to the path '''/home/$USER/.face''' as a workaround, i.e.


<syntaxHighlight lang=console>
<syntaxHighlight lang="console">
$ mv /path/to/image.jpg ~/.face
$ mv /path/to/image.jpg ~/.face
</syntaxHighlight>
</syntaxHighlight>


=== automatic login ===
=== 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
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">
services.xserver.displayManager.autoLogin.enable = true;
services.xserver.displayManager.autoLogin.enable = true;
services.xserver.displayManager.autoLogin.user = "account";
services.xserver.displayManager.autoLogin.user = "account";
</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."autovt@tty1".enable = false;
  systemd.services."getty@tty1".enable = false;
  systemd.services."autovt@tty1".enable = false;
}
</syntaxHighlight>
</syntaxHighlight>
.
== Also see ==


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


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

Latest revision as of 10:41, 11 June 2024

GNOME (/(ɡ)noʊm/) is a desktop environment known for its focus on being simple, intuitive, and easy to use. It is made by The GNOME Project and is composed entirely of free and open-source software. Its Mutter compositor supports both Wayland and X server, and the GNOME Shell user interface is customizable by extensions.

This article is an extension of the documentation in the NixOS manual.

GNOME is available as a module and can be enabled with services.xserver.desktopManager.

Installation

To use GNOME, add this to your configuration.nix:

/etc/nixos/configuration.nix
{
  services.xserver.enable = true;
  services.xserver.displayManager.gdm.enable = true;
  services.xserver.desktopManager.gnome.enable = true;
}

Excluding GNOME Applications

To exclude certain applications that are installed by default with GNOME edit configuration.nix as follows:

/etc/nixos/configuration.nix
{
  environment.gnome.excludePackages = (with pkgs; [
    # for packages that are pkgs.*
    gnome-tour
    gnome-connections
  ]) ++ (with pkgs.gnome; [
    # for packages that are pkgs.gnome.*
    epiphany # web browser
    geary # email reader
    evince # document viewer
  ]);
}

Configuration

Managing extensions

GNOME extensions are managed and configured by the program "Extensions" that comes with GNOME. Some of them can be installed with Nix, however they aren't enabled by default. To enable them the "Extensions" program can be used.

/etc/nixos/configuration.nix
{
  environment.systemPackages = with pkgs.gnomeExtensions; [
    blur-my-shell
    pop-shell
    # ...
  ];
}

Installed extensions can be enabled and configured in Extension app that comes preinstalled with GNOME. If you want to do that declaratively in your configuration, you can use Home Manager dconf module by adding following lines.

~/.config/home-manager/home.nix
{
  dconf = {
    enable = true;
    settings = {
      "org/gnome/shell" = {
        disable-user-extensions = false; # enables user extensions
        enabled-extensions = [
          # Put UUIDs of extensions that you want to enable here.
          # If the extension you want to enable is packaged in nixpkgs,
          # you can easily get its UUID by accessing its extensionUuid
          # field (look at the following example).
          pkgs.gnomeExtensions.gsconnect.extensionUuid
          
          # Alternatively, you can manually pass UUID as a string.  
          "blur-my-shell@aunetx"
          # ...
        ];
      };

      # Configure individual extensions
      "org/gnome/shell/extensions/blur-my-shell" = {
        brightness = 0.75;
        noise-amount = 0;
      };
    };
  };
}

dconf settings

Most of the GNOME settings are stored in dconf database. Settings are stored as keys placed in folders.

To learn about settings that can be configured with dconf either look into dconf-editor program (provided by gnome.dconf-editor package) or type dconf watch / in the terminal and change settings from the GUI and see which options are responsible for that component/element.

These settings can be changed by NixOS via programs.dconf module or by Home Manager via dconf module. To so in Home Manager, you need to change dconf.settings attribute set. This attribute set contains absolute folder paths (without leading slash) as attributes' names which value is another attribute set with keys (settings).

For example, to change the value of clock-show-weekday key that is located in /org/gnome/desktop/interface, you need to the following:

~/.config/home-manager/home.nix
{
  dconf.settings = {
    enable = true;

    # You need quotes to escape '/'
    "org/gnome/desktop/interface" = {
      clock-show-weekday = true;
    };
  };
}

Same can be achieved by using system configuration.

/etc/nixos/configuration.nix
{
  programs.dconf = {
    enable = true;
    profiles.user.databases = [
      {
        lockAll = true; # prevents overriding
        settings = {
          "org/gnome/desktop/interface" = {
            clock-show-weekday = true;
          };
        };
      }
    ];
  };
}
Note: Since dconf have more data types than Nix language (for example, tuples), in some cases you'll need to convert Nix value to a GVariant value. You can achieve that by using function defined in lib.gvariant, they're documented here.

Dark mode

Change default color theme for all GTK4 applications to dark using Home Manager.

~/.config/home-manager/home.nix
{
  dconf = {
    enable = true;
    settings."org/gnome/desktop/interface".color-scheme = "prefer-dark";
  };
}

Tips and tricks

To run GNOME programs outside of GNOME

GNOME platform-based applications are largely self-contained, but they still depend, for one reason or another, on some global configuration. The gnome.nix module sets all the necessary options for you but if you are running customized set-up, you might need to replicate that yourself.

For instance, if you see the following error:

dconf-WARNING **: failed to commit changes to dconf: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name ca.desrt.dconf was not provided by any .service files

you should enable dconf module:

{
  programs.dconf.enable = true;
}

Many applications rely heavily on having an icon theme available, GNOME’s Adwaita is a good choice but most recent icon themes should work as well.

{
  environment.systemPackages = with pkgs; [ gnome.adwaita-icon-theme ];
}

Systray Icons

To get systray icons, install the related GNOME shell extension

{
  environment.systemPackages = [ pkgs.gnomeExtensions.appindicator ];
}

And ensure gnome-settings-daemon udev rules are enabled:

{
  services.udev.packages = [ pkgs.gnome.gnome-settings-daemon ];
}

To run old applications

Some old applications use GConf service to store configuration. This has been deprecated for many years but some applications were abandoned before they managed to upgrade to a newer dconf system. If you are running such application and getting an error like:

GLib.GException: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information

you need to add gnome2.GConf to the list of dbus packages in your configuration.nix:

{
  services.dbus.packages = with pkgs; [ gnome2.GConf ];
}

After applying the update restart your desktop session to refresh the user-specific dbus session.

Dynamic triple buffering

Warning: Dynamic triple buffering is a still developing feature that is not merged into GNOME's mutter. Some bugs and unexpected behavior can occur. Use at your own risk!

Big merge request against Mutter improves the performance of the window manager by a lot (and is already used by Ubuntu). Not merged into nixpkgs due to philosophy of nixpkgs, but users are free to add this overlay to get it too.

If you wish to try this patch for yourself, add the following to your NixOS configuration:

/etc/nixos/configuration.nix
{
  nixpkgs.overlays = [
    # GNOME 46: triple-buffering-v4-46
    (final: prev: {
      gnome = prev.gnome.overrideScope (gnomeFinal: gnomePrev: {
        mutter = gnomePrev.mutter.overrideAttrs (old: {
          src = pkgs.fetchFromGitLab  {
            domain = "gitlab.gnome.org";
            owner = "vanvugt";
            repo = "mutter";
            rev = "triple-buffering-v4-46";
            hash = "sha256-fkPjB/5DPBX06t7yj0Rb3UEuu5b9mu3aS+jhH18+lpI=";
          };
        });
      });
    })
  ];
}

You might need to disable aliases to make it work:

  nixpkgs.config.allowAliases = false;

Profiling (with sysprof)

Install sysprof as a system package (it won't work properly if installed against users). Then enable the associated service with

  services.sysprof.enable = true;

Automatic screen rotation

  hardware.sensor.iio.enable = true;

Troubleshoots

Change user's profile picture

Currently there is no way to change the user's profile picture using Gnome Control Center (see this issue) and currently there is no plan to support it officially in NixOS. However, you can modify it by copying the profile picture that you want to the path /home/$USER/.face as a workaround, i.e.

$ mv /path/to/image.jpg ~/.face

Automatic login

If you have enabled auto login (with GNOME) with something like

$ grep autoLogin /etc/nixos/configuration.nix
services.xserver.displayManager.autoLogin.enable = true;
services.xserver.displayManager.autoLogin.user = "account";

than add the following (as a workaround for a current (2023)[1] problem)

# nano /etc/nixos/configuration.nix
{
  systemd.services."getty@tty1".enable = false;
  systemd.services."autovt@tty1".enable = false;
}

See also