Skip to content

Commit

Permalink
programs/lieer: use lieer package (#3262)
Browse files Browse the repository at this point in the history
The gmailieer attribute was aliased to lieer in nixpkgs.
  • Loading branch information
tadfisher authored Oct 3, 2022
1 parent a7f0cc2 commit e4e639d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/programs/lieer.nix
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ in {

package = mkOption {
type = types.package;
default = pkgs.gmailieer;
defaultText = "pkgs.gmailieer";
default = pkgs.lieer;
defaultText = "pkgs.lieer";
description = ''
lieer package to use.
'';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Service]
Environment=NOTMUCH_CONFIG=/home/hm-user/.config/notmuch/default/config
ExecStart=@gmailieer@/bin/gmi sync
ExecStart=@lieer@/bin/gmi sync
Type=oneshot
WorkingDirectory=/home/hm-user/Mail/[email protected]

Expand Down
2 changes: 1 addition & 1 deletion tests/modules/services/lieer/lieer-service.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ with lib;
};
};

test.stubs.gmailieer = { };
test.stubs.lieer = { };

nmt.script = ''
assertFileExists home-files/.config/systemd/user/lieer-hm-example-com.service
Expand Down

0 comments on commit e4e639d

Please sign in to comment.