diff --git a/home/common/aerc.nix b/home/common/aerc.nix index a8f480e..97f7312 100644 --- a/home/common/aerc.nix +++ b/home/common/aerc.nix @@ -10,8 +10,8 @@ threading-enabled = " true"; threading-by-subject = "true"; index-columns = "flags>=,date<=,name<20,subject<*,notmuch>="; - column-notmuch = - "{{- (map .Labels (exclude .Folder) (exclude \"replied|passed|attachment|flagged|unread|draft\") | join \",\") -}}"; + column-notmuch = '' + {{- (map .Labels (exclude .Folder) (exclude "replied|passed|attachment|flagged|unread|draft") | join ",") -}}''; }; hooks = { diff --git a/home/common/mail.nix b/home/common/mail.nix index 4f7816e..5df5151 100644 --- a/home/common/mail.nix +++ b/home/common/mail.nix @@ -30,8 +30,7 @@ }; }; - xdg.configFile."notmuch/hooks/post-new".source = - ./files/notmuch/post-new; + xdg.configFile."notmuch/hooks/post-new".source = ./files/notmuch/post-new; xdg.configFile."neomutt/neomuttrc".source = ./files/neomutt/neomuttrc; xdg.configFile."neomutt/mailcap".source = ./files/neomutt/mailcap; diff --git a/home/common/ssh.nix b/home/common/ssh.nix index 69c4e5c..ec6e235 100644 --- a/home/common/ssh.nix +++ b/home/common/ssh.nix @@ -9,15 +9,9 @@ port = 2020; identityFile = "/home/don/.ssh/git"; }; - "github.com" = { - identityFile = "/home/don/.ssh/git"; - }; - "gitlab.com" = { - identityFile = "/home/don/.ssh/git"; - }; - "homeassistant.home.duckland.org" = { - user = "root"; - }; + "github.com" = { identityFile = "/home/don/.ssh/git"; }; + "gitlab.com" = { identityFile = "/home/don/.ssh/git"; }; + "homeassistant.home.duckland.org" = { user = "root"; }; "dreamhost" = { user = "duck"; hostname = "wise.dreamhost.com"; diff --git a/home/common/tui.nix b/home/common/tui.nix index 362caa8..6ed8666 100644 --- a/home/common/tui.nix +++ b/home/common/tui.nix @@ -1,20 +1,11 @@ -{ ... }: -{ +{ ... }: { programs = { iamb = { enable = true; settings = { default_profile = "personal"; - profiles = { - "personal" = { - user_id = "@duckunix:matrix.org"; - }; - }; - settings = { - notifications = { - enabled = true; - }; - }; + profiles = { "personal" = { user_id = "@duckunix:matrix.org"; }; }; + settings = { notifications = { enabled = true; }; }; }; }; };