Skip to content

Commit

Permalink
treewide: fix eval after Nixpkgs maintainer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rycee committed Jul 4, 2024
1 parent 6ea6faf commit c514e86
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions modules/lib/maintainers.nix
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,13 @@
github = "jack5079";
githubId = 29169102;
};
janik = {
name = "Janik";
email = "janik@aq0.de";
matrix = "@janik0:matrix.org";
github = "Janik-Haag";
githubId = 80165193;
};
jkarlson = {
email = "jekarlson@gmail.com";
github = "jkarlson";
Expand Down Expand Up @@ -214,6 +221,13 @@
github = "lheckemann";
githubId = 341954;
};
lilyinstarlight = {
email = "lily@lily.flowers";
matrix = "@lily:lily.flowers";
github = "lilyinstarlight";
githubId = 298109;
name = "Lily Foster";
};
loicreynier = {
name = "Loïc Reynier";
email = "loic@loireynier.fr";
Expand Down
2 changes: 1 addition & 1 deletion modules/programs/gh-dash.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let
yamlFormat = pkgs.formats.yaml { };

in {
meta.maintainers = [ lib.maintainers.janik ];
meta.maintainers = [ lib.hm.maintainers.janik ];

options.programs.gh-dash = {
enable = lib.mkEnableOption "GitHub CLI dashboard plugin";
Expand Down
2 changes: 1 addition & 1 deletion modules/programs/hyfetch.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let

jsonFormat = pkgs.formats.json { };
in {
meta.maintainers = [ maintainers.lilyinstarlight ];
meta.maintainers = [ hm.maintainers.lilyinstarlight ];

options.programs.hyfetch = {
enable = mkEnableOption "hyfetch";
Expand Down
2 changes: 1 addition & 1 deletion modules/programs/script-directory.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ config, pkgs, lib, ... }:
let cfg = config.programs.script-directory;
in {
meta.maintainers = [ lib.maintainers.janik ];
meta.maintainers = [ lib.hm.maintainers.janik ];

options.programs.script-directory = {
enable = lib.mkEnableOption "script-directory";
Expand Down
2 changes: 1 addition & 1 deletion modules/services/cliphist.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ config, lib, pkgs, ... }:
let cfg = config.services.cliphist;
in {
meta.maintainers = [ lib.maintainers.janik ];
meta.maintainers = [ lib.hm.maintainers.janik ];

options.services.cliphist = {
enable =
Expand Down

0 comments on commit c514e86

Please sign in to comment.