Compare commits
No commits in common. "09448958907d1156d05122f1152cdab0adba2253" and "33f430757444398397461c91533a1e6a8054e446" have entirely different histories.
0944895890
...
33f4307574
|
@ -38,11 +38,11 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1663357389,
|
||||
"narHash": "sha256-oYA2nVRSi6yhCBqS5Vz465Hw+3BQOVFEhfbfy//3vTs=",
|
||||
"lastModified": 1663178737,
|
||||
"narHash": "sha256-ayOtdyoNx6BqJtTYVzdQCDz/YWb67TY/CMGacFCgNQo=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "da6a05816e7fa5226c3f61e285ef8d9dfc868f3c",
|
||||
"rev": "1158501e7c7cba26d922723cf9f70099995eb755",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -56,7 +56,8 @@ in {
|
|||
systemd.user.services.goimapnotify-ugent = {
|
||||
description = "Sync UGent mail using IMAP IDLE";
|
||||
wantedBy = [ "default.target" ];
|
||||
path = [ goimapnotify pass-wayland isync-oauth2 mu python39 gnupg nix ];
|
||||
path =
|
||||
[ goimapnotify pass-wayland isync-oauth2 notmuch python39 gnupg nix ];
|
||||
script = ''
|
||||
${pkgs.goimapnotify}/bin/goimapnotify -conf /home/coolneng/.config/goimapnotify/ugent.conf
|
||||
'';
|
||||
|
@ -72,7 +73,7 @@ in {
|
|||
systemd.user.services.goimapnotify-gmail = {
|
||||
description = "Sync gmail mail using IMAP IDLE";
|
||||
wantedBy = [ "default.target" ];
|
||||
path = [ goimapnotify pass-wayland isync-oauth2 mu ];
|
||||
path = [ goimapnotify pass-wayland isync-oauth2 notmuch ];
|
||||
script = ''
|
||||
${pkgs.goimapnotify}/bin/goimapnotify -conf /home/coolneng/.config/goimapnotify/gmail.conf
|
||||
'';
|
||||
|
@ -88,7 +89,7 @@ in {
|
|||
systemd.user.services.goimapnotify-disroot = {
|
||||
description = "Sync disroot mail using IMAP IDLE";
|
||||
wantedBy = [ "default.target" ];
|
||||
path = [ goimapnotify pass-wayland isync-oauth2 mu ];
|
||||
path = [ goimapnotify pass-wayland isync-oauth2 notmuch ];
|
||||
script = ''
|
||||
${pkgs.goimapnotify}/bin/goimapnotify -conf /home/coolneng/.config/goimapnotify/disroot.conf
|
||||
'';
|
||||
|
|
|
@ -6,7 +6,7 @@ let
|
|||
emacs-vterm = ((emacsPackagesFor emacs28NativeComp).emacsWithPackages
|
||||
(epkgs: with epkgs; [ vterm pdf-tools ]));
|
||||
isync-oauth2 = isync.overrideAttrs
|
||||
(div: rec { buildInputs = [ openssl db patched-cyrus-sasl-oauth2 zlib ]; });
|
||||
(div: rec { buildInputs = [ openssl patched-cyrus-sasl-oauth2 zlib ]; });
|
||||
mpv-sponsorblock =
|
||||
(mpv-with-scripts.override { scripts = [ mpvScripts.sponsorblock ]; });
|
||||
|
||||
|
@ -67,8 +67,9 @@ in {
|
|||
bc
|
||||
citrix_workspace
|
||||
# Mail stack
|
||||
mu
|
||||
neomutt
|
||||
isync-oauth2
|
||||
notmuch
|
||||
msmtp
|
||||
w3m
|
||||
urlscan
|
||||
|
|
Loading…
Reference in New Issue