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