1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-25 07:58:31 +02:00

Add note about using graphical services to README

This commit is contained in:
Robert Helgesson 2017-05-06 12:50:32 +02:00
parent 88ec7145ba
commit 6e3085dc22
No known key found for this signature in database
GPG Key ID: C3DB11069E65DC86

View File

@ -161,6 +161,40 @@ Existing file '/home/jdoe/.gitconfig' is in the way
Please move the above files and try again
```
Graphical services
------------------
Home Manager includes a number of services intended to run in a
graphical session, for example `xscreensaver` and `dunst`.
Unfortunately, such services will not be started automatically unless
you let Home Manager start your X session. That is, you have something
like
```nix
{
# …
services.xserver.enable = true;
# …
}
```
in your system configuration and
```nix
{
# …
xsession.enable = true;
xsession.windowManager = "…";
# …
}
```
in your Home Manager configuration.
[Nix]: https://nixos.org/nix/
[NixOS]: https://nixos.org/
[Nixpkgs]: https://nixos.org/nixpkgs/