about summary refs log tree commit diff
path: root/nixos/modules/services/display-managers
AgeCommit message (Collapse)AuthorFilesLines
2024-04-13nixos: remove all uses of lib.mdDocstuebinm3-28/+28
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
2024-04-12Merge pull request #303674 from lilyinstarlight/fix/greetd-desktop-session-dataK9001-0/+3
nixos/greetd: enable desktop session data
2024-04-12nixos/greetd: enable desktop session dataLily Foster1-0/+3
2024-04-12Merge pull request #303186 from SuperSandro2000/sddm-xserver-followupSandro1-0/+3
2024-04-12nixos/display-managers: add renamed option missed in #291913Sandro Jäckel1-0/+3
2024-04-10nixos/sddm: allow disabling the rest of X11K9001-1/+1
2024-04-09Merge pull request #291913 from SuperSandro2000/sddm-wayland-onlySandro2-0/+639
2024-04-09nixos: improve many 'enable' descriptionsBjørn Forsman1-1/+1
2024-04-08treewide: rename renamed sddm/displayManager settingsSandro Jäckel2-9/+9
2024-04-08nixos/sddm: allow running on wayland without xserver enabledSandro Jäckel1-2/+2
2024-04-08nixos/sddm: move option from services.xserver.displayManager.sddm to ↵Sandro Jäckel1-0/+382
services.displayManager.sddm Because it is not just X anymore
2024-04-08nixos/display-managers: extract generic display-manager bitsSandro Jäckel1-0/+257
Some settings which where before inside the xserver module, are generic and also required for SDDM under wayland. To make them easily re-usable lets extract them.
2024-03-23nixos/greetd: create display-manager.service aliasK9001-0/+2
2024-02-16nixos/greetd: only restart on successK9001-1/+1
Otherwise, if the greeter/session crashes on startup, greetd enters a restart loop that requires very precise timing to kill.
2023-12-07Merge pull request #268497 from katexochen/greetd/tuigreet-dirPeder Bergebakken Sundt1-3/+9
greetd: create cache dir for tuigreet
2023-11-27treewide: use `mkPackageOption`h7x41-6/+1
This commit replaces a lot of usages of `mkOption` with the package type, to be `mkPackageOption`, in order to reduce the amount of code.
2023-11-19greetd: create cache dir for tuigreetPaul Meyer1-3/+9
2023-11-05nixos/greetd: autostart GNOME Keyring when enabledLeah Amelia Chen1-0/+1
The PAM service `greetd` creates now autostarts GNOME Keyring when it is enabled via `services.gnome.gnome-keyring.enable`. Should cause a lot fewer headaches for people like me who didn't know why GNOME Keyring was complaining that it was never supplied with login details. Fixes #246197
2022-12-19greetd: use service-type 'idle' in systemd-service to avoid overlapping ↵Sebastian Sellmeier1-0/+2
systemd-output
2022-12-17nixos: fix typosfigsoda1-1/+1
2022-08-31nixos/*: automatically convert option descriptionspennae1-1/+1
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
2022-07-30treewide: automatically md-convert option descriptionspennae1-5/+5
the conversion procedure is simple: - find all things that look like options, ie calls to either `mkOption` or `lib.mkOption` that take an attrset. remember the attrset as the option - for all options, find a `description` attribute who's value is not a call to `mdDoc` or `lib.mdDoc` - textually convert the entire value of the attribute to MD with a few simple regexes (the set from mdize-module.sh) - if the change produced a change in the manual output, discard - if the change kept the manual unchanged, add some text to the description to make sure we've actually found an option. if the manual changes this time, keep the converted description this procedure converts 80% of nixos options to markdown. around 2000 options remain to be inspected, but most of those fail the "does not change the manual output check": currently the MD conversion process does not faithfully convert docbook tags like <code> and <package>, so any option using such tags will not be converted at all.
2022-07-13nixos/greetd: fix minor typo for default userLily Foster1-1/+1
It has been like this since the module was added, but it hasn't caused problems because greetd assumes a default user of "greeter"[1] when it isn't found anyway [1]: https://git.sr.ht/~kennylevinsen/greetd/tree/d70030962341a3ae7a88ecf2f7af748a5a6296d1/item/greetd/src/config/mod.rs#L127
2021-10-04nixos/doc: clean up defaults and examplesNaïm Favier1-3/+3
2021-09-19nixos/greetd: Fix for nogroup removal.Amanda Cameron1-1/+6
2021-04-06nixos/greetd: Add greetd module (#118294)Jens Nolte1-0/+106
* nixos/greetd: Add greetd module * nixos/greetd: Configure 'greeter'-user * nixos/greetd: Add default for restart-option Co-authored-by: Jens Nolte <git@queezle.net>