Mark rycee as maintainer for a bunch of modules

wip/yesman
Robert Helgesson 7 years ago
parent bf9b9026d9
commit a8e08d14bb
No known key found for this signature in database
GPG Key ID: C3DB11069E65DC86
  1. 2
      modules/home-environment.nix
  2. 25
      modules/manual.nix
  3. 2
      modules/misc/gtk.nix
  4. 2
      modules/misc/news.nix
  5. 2
      modules/misc/pam.nix
  6. 2
      modules/programs/bash.nix
  7. 2
      modules/programs/beets.nix
  8. 2
      modules/programs/eclipse.nix
  9. 2
      modules/programs/emacs.nix
  10. 2
      modules/programs/firefox.nix
  11. 2
      modules/programs/git.nix
  12. 2
      modules/programs/gnome-terminal.nix
  13. 2
      modules/programs/home-manager.nix
  14. 2
      modules/programs/lesspipe.nix
  15. 2
      modules/programs/ssh.nix
  16. 2
      modules/programs/texlive.nix
  17. 2
      modules/services/dunst.nix
  18. 2
      modules/services/gnome-keyring.nix
  19. 2
      modules/services/gpg-agent.nix
  20. 2
      modules/services/keepassx.nix
  21. 2
      modules/services/network-manager-applet.nix
  22. 2
      modules/services/random-background.nix
  23. 5
      modules/services/redshift.nix
  24. 2
      modules/services/syncthing.nix
  25. 2
      modules/services/taffybar.nix
  26. 2
      modules/services/tahoe-lafs.nix
  27. 2
      modules/services/udiskie.nix
  28. 2
      modules/services/xscreensaver.nix
  29. 2
      modules/systemd.nix
  30. 2
      modules/xresources.nix
  31. 2
      modules/xsession.nix

@ -93,6 +93,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
home.file = mkOption {
description = "Attribute set of files to link into the user home.";

@ -64,15 +64,18 @@ in
};
# To fix error during manpage build.
meta.doc = builtins.toFile "nothingness" ''
<chapter xmlns="http://docbook.org/ns/docbook"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
version="5.0"
xml:id="sec-nothing">
<title>this is just to make the docs compile</title>
<para xml:id="sec-grsecurity"></para>
<para xml:id="sec-emacs-docbook-xml"></para>
</chapter>
'';
meta = {
maintainers = [ maintainers.rycee ];
doc = builtins.toFile "nothingness" ''
<chapter xmlns="http://docbook.org/ns/docbook"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
version="5.0"
xml:id="sec-nothing">
<title>this is just to make the docs compile</title>
<para xml:id="sec-grsecurity"></para>
<para xml:id="sec-emacs-docbook-xml"></para>
</chapter>
'';
};
}

@ -30,6 +30,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
gtk = {
enable = mkEnableOption "GTK 2/3 configuration";

@ -48,6 +48,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
news = {
display = mkOption {

@ -9,6 +9,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {};
config = mkIf (homeCfg.sessionVariableSetter == "pam") {

@ -9,6 +9,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
programs.bash = {
enable = mkEnableOption "GNU Bourne-Again SHell";

@ -9,6 +9,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
programs.beets = {
settings = mkOption {

@ -9,6 +9,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
programs.eclipse = {
enable = mkEnableOption "Eclipse";

@ -13,6 +13,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
programs.emacs = {
enable = mkEnableOption "Emacs";

@ -9,6 +9,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
programs.firefox = {
enable = mkEnableOption "Firefox";

@ -31,6 +31,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
programs.git = {
enable = mkEnableOption "Git";

@ -157,6 +157,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
programs.gnome-terminal = {
enable = mkEnableOption "Gnome Terminal";

@ -10,6 +10,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
programs.home-manager = {
enable = mkEnableOption "Home Manager";

@ -3,6 +3,8 @@
with lib;
{
meta.maintainers = [ maintainers.rycee ];
options = {
programs.lesspipe = {
enable = mkEnableOption "lesspipe preprocessor for less";

@ -118,6 +118,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options.programs.ssh = {
enable = mkEnableOption "SSH client configuration";

@ -9,6 +9,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
programs.texlive = {
enable = mkEnableOption "Texlive";

@ -3,6 +3,8 @@
with lib;
{
meta.maintainers = [ maintainers.rycee ];
options = {
services.dunst = {
enable = mkEnableOption "the dunst notification daemon";

@ -9,6 +9,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
services.gnome-keyring = {
enable = mkEnableOption "GNOME Keyring";

@ -15,6 +15,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
services.gpg-agent = {
enable = mkEnableOption "GnuPG private key agent";

@ -3,6 +3,8 @@
with lib;
{
meta.maintainers = [ maintainers.rycee ];
options = {
services.keepassx = {
enable = mkEnableOption "the KeePassX password manager";

@ -3,6 +3,8 @@
with lib;
{
meta.maintainers = [ maintainers.rycee ];
options = {
services.network-manager-applet = {
enable = mkEnableOption "the Network Manager applet";

@ -9,6 +9,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
services.random-background = {
enable = mkEnableOption "random desktop background";

@ -8,7 +8,10 @@ let
cfg = config.services.redshift;
in {
in
{
meta.maintainers = [ maintainers.rycee ];
options.services.redshift = {
enable = mkOption {

@ -3,6 +3,8 @@
with lib;
{
meta.maintainers = [ maintainers.rycee ];
options = {
services.syncthing = {
enable = mkEnableOption "Syncthing continuous file synchronization";

@ -9,6 +9,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
services.taffybar = {
enable = mkEnableOption "Taffybar";

@ -3,6 +3,8 @@
with lib;
{
meta.maintainers = [ maintainers.rycee ];
options = {
services.tahoe-lafs = {
enable = mkEnableOption "Tahoe-LAFS";

@ -3,6 +3,8 @@
with lib;
{
meta.maintainers = [ maintainers.rycee ];
options = {
services.udiskie = {
enable = mkEnableOption "Udiskie mount daemon";

@ -3,6 +3,8 @@
with lib;
{
meta.maintainers = [ maintainers.rycee ];
options = {
services.xscreensaver = {
enable = mkEnableOption "XScreenSaver";

@ -45,6 +45,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
systemd.user = {
services = mkOption {

@ -17,6 +17,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
xresources.properties = mkOption {
type = types.nullOr types.attrs;

@ -9,6 +9,8 @@ let
in
{
meta.maintainers = [ maintainers.rycee ];
options = {
xsession = {
enable = mkEnableOption "X Session";

Loading…
Cancel
Save