Mark rycee as maintainer for a bunch of modules

This commit is contained in:
Robert Helgesson 2017-09-26 23:40:31 +02:00
parent bf9b9026d9
commit a8e08d14bb
No known key found for this signature in database
GPG Key ID: C3DB11069E65DC86
31 changed files with 76 additions and 12 deletions

View File

@ -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.";

View File

@ -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>
'';
};
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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