mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
programs/lieer: use lieer package (#3262)
The gmailieer attribute was aliased to lieer in nixpkgs.
This commit is contained in:
parent
a7f0cc2d7b
commit
e4e639dd4d
3 changed files with 4 additions and 4 deletions
|
@ -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.
|
||||
'';
|
||||
|
|
|
@ -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/hm@example.com
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue