···5252 services.getty.helpLine = ''
5353 The "nixos" and "root" accounts have empty passwords.
54545555- An ssh daemon is running. You then must set a password
5656- for either "root" or "nixos" with `passwd` or add an ssh key
5757- to /home/nixos/.ssh/authorized_keys be able to login.
5555+ To log in over ssh you must set a password for either "nixos" or "root"
5656+ with `passwd` (prefix with `sudo` for "root"), or add your public key to
5757+ /home/nixos/.ssh/authorized_keys or /root/.ssh/authorized_keys.
58585959 If you need a wireless connection, type
6060 `sudo systemctl start wpa_supplicant` and configure a
···6565 start the graphical user interface.
6666 '';
67676868- # We run sshd by default. Login via root is only possible after adding a
6969- # password via "passwd" or by adding a ssh key to /home/nixos/.ssh/authorized_keys.
6868+ # We run sshd by default. Login is only possible after adding a
6969+ # password via "passwd" or by adding a ssh key to ~/.ssh/authorized_keys.
7070 # The latter one is particular useful if keys are manually added to
7171 # installation device for head-less systems i.e. arm boards by manually
7272 # mounting the storage in a different system.
+3-1
nixos/modules/system/boot/resolved.nix
···1616 default = false;
1717 type = types.bool;
1818 description = lib.mdDoc ''
1919- Whether to enable the systemd DNS resolver daemon.
1919+ Whether to enable the systemd DNS resolver daemon, `systemd-resolved`.
2020+2121+ Search for `services.resolved` to see all options.
2022 '';
2123 };
2224
···1818 '';
19192020 # LaTeX is used from $PATH, as people often want to have it with extra pkgs
2121- nativeBuildInputs = [ pkg-config makeWrapper ];
2121+ nativeBuildInputs = [ pkg-config makeWrapper python3 ];
2222 buildInputs = [
2323- qtbase qtsvg python3 file/*for libmagic*/ bc
2323+ qtbase qtsvg file/*for libmagic*/ bc
2424 hunspell # enchant
2525 ];
2626
···254254 meta = with lib; {
255255 homepage = "https://www.docker.com/";
256256 description = "An open source project to pack, ship and run any application as a lightweight container";
257257+ longDescription = ''
258258+ Docker is a platform designed to help developers build, share, and run modern applications.
259259+260260+ To enable the docker daemon on NixOS, set the `virtualisation.docker.enable` option to `true`.
261261+ '';
257262 license = licenses.asl20;
258263 maintainers = with maintainers; [ offline tailhook vdemeester periklis mikroskeem maxeaubrey ];
259264 };
···188188 "tests/vocoder_tests/test_multiband_melgan_train.py"
189189 "tests/vocoder_tests/test_melgan_train.py"
190190 "tests/vocoder_tests/test_wavernn_train.py"
191191+ # only a feed forward test, but still takes too long
192192+ "tests/tts_tests/test_overflow.py"
191193 ];
192194193195 passthru = {
+7
pkgs/tools/misc/partition-manager/default.nix
···62626363 meta = with lib; {
6464 description = "KDE Partition Manager";
6565+ longDescription = ''
6666+ KDE Partition Manager is a utility to help you manage the disks, partitions, and file systems on your computer.
6767+ It allows you to easily create, copy, move, delete, back up, restore, and resize them without losing data.
6868+ It supports a large number of file systems, including ext2/3/4, btrfs, reiserfs, NTFS, FAT16/32, JFS, XFS and more.
6969+7070+ To install on NixOS, use the option `programs.partition-manager.enable = true`.
7171+ '';
6572 license = with licenses; [ cc-by-40 cc0 gpl3Plus lgpl3Plus mit ];
6673 homepage = "https://www.kde.org/applications/system/kdepartitionmanager/";
6774 maintainers = with maintainers; [ peterhoeg oxalica ];