Compare commits

...

4 commits

Author SHA1 Message Date
Payas Relekar
2a32b0613d bebop: boot instead of switch
Hoping to reduce server non-responsiveness, probably due to cloudflared
failing to restart after a switch.
2024-03-16 16:53:48 +05:30
Payas Relekar
df11af1771 paperless: minor formatting change 2024-03-16 14:38:22 +05:30
Payas Relekar
1f5e986a78 doom: remove nixfmt override
Nix formatting RFC was merged, with new style being implemented in a
separate branch of nixfmt. Since I have it installed and have already
started using it, this override to use nixpkgs-fmt can be removed.
2024-03-16 14:37:09 +05:30
Payas Relekar
67e5fd2175 doom/org: skip entries that are done/cancelled from agenda
org-agenda default behavior appears to be changed and now is including
entries for things that were cancelled ages ago.

These variables are not all necessary, but they seem like good choice to
keep the clutter out.
2024-03-16 13:17:22 +05:30
3 changed files with 6 additions and 7 deletions

View file

@ -94,6 +94,7 @@ in
allowReboot = true; allowReboot = true;
flake = "git+https://git.bhankas.org/payas/nixos#bebop"; flake = "git+https://git.bhankas.org/payas/nixos#bebop";
dates = "04:00"; dates = "04:00";
operation = "boot";
randomizedDelaySec = "05min"; randomizedDelaySec = "05min";
rebootWindow = { rebootWindow = {
lower = "04:30"; lower = "04:30";

View file

@ -444,6 +444,9 @@ As such, relying on imperative config evaluation can turn into gotchas. While th
org-agenda-restrict t org-agenda-restrict t
org-agenda-skip-scheduled-if-deadline-is-shown t org-agenda-skip-scheduled-if-deadline-is-shown t
org-agenda-skip-timestamp-if-deadline-is-shown t org-agenda-skip-timestamp-if-deadline-is-shown t
org-agenda-skip-deadline-prewarning-if-scheduled t
org-agenda-skip-scheduled-if-done t
org-agenda-skip-deadline-if-done t
org-agenda-restore-windows-after-quit t org-agenda-restore-windows-after-quit t
org-refile-use-outline-path 'title org-refile-use-outline-path 'title
org-icalendar-force-alarm 0 org-icalendar-force-alarm 0
@ -1302,10 +1305,7 @@ When Emacs is opened in Windows Subsystem for Linux, open web links in Firefox o
:init :init
(map! (:map global-map (map! (:map global-map
:leader :leader
:desc "format" "TAB" #'apheleia-format-buffer)) :desc "format" "TAB" #'apheleia-format-buffer)))
:config
(add-to-list 'apheleia-formatters '(nixpkgs-fmt "nixpkgs-fmt"))
(add-to-list 'apheleia-mode-alist '(nix-ts-mode . nixpkgs-fmt)))
#+end_src #+end_src
# Local Variables: # Local Variables:
# jinx-local-words: "lockfiles" # jinx-local-words: "lockfiles"

View file

@ -37,9 +37,7 @@
locations."/" = { locations."/" = {
proxyPass = "http://127.0.0.1:28981"; proxyPass = "http://127.0.0.1:28981";
proxyWebsockets = false; proxyWebsockets = false;
extraConfig = extraConfig = "proxy_set_header Host $host;";
"proxy_set_header Host $host;"
;
}; };
}; };
}; };