Commit Graph

647 Commits

Author SHA1 Message Date
085c81ea81 test/doom.d/init.el: Updating from hlissner/doom-emacs - af7c1d79
### Changes for test/doom.d/init.el

```diff
--- 
+++ 
@@ -23,7 +23,8 @@
        company           ; the ultimate code completion backend
        ;;helm              ; the *other* search engine for love and life
        ;;ido               ; the other *other* search engine...
-       ivy               ; a search engine for love and life
+       ;;ivy               ; a search engine for love and life
+       vertico           ; the search engine of the future
 
        :ui
        ;;deft              ; notational velocity for Emacs
@@ -84,6 +85,7 @@
 
        :tools
        ;;ansible
+       ;;biblio            ; Writes a PhD for you (citation needed)
        ;;debugger          ; FIXME stepping through code, to help you add bugs
        ;;direnv
        ;;docker
@@ -119,6 +121,7 @@
        ;;csharp            ; unity, .NET, and mono shenanigans
        ;;data              ; config/data formats
        ;;(dart +flutter)   ; paint ui and not much else
+       ;;dhall
        ;;elixir            ; erlang done right
        ;;elm               ; care for a cup of TEA?
        emacs-lisp        ; drown in parentheses
@@ -126,11 +129,12 @@
        ;;ess               ; emacs speaks statistics
        ;;factor
        ;;faust             ; dsp, but you get to keep your soul
+       ;;fortran           ; in FORTRAN, GOD is REAL (unless declared INTEGER)
        ;;fsharp            ; ML stands for Microsoft's Language
        ;;fstar             ; (dependent) types and (monadic) effects and Z3
        ;;gdscript          ; the language you waited for
        ;;(go +lsp)         ; the hipster dialect
-       ;;(haskell +dante)  ; a language that's lazier than I am
+       ;;(haskell +lsp)    ; a language that's lazier than I am
        ;;hy                ; readability of scheme w/ speed of python
        ;;idris             ; a language you can depend on
        ;;json              ; At least it ain't XML
@@ -170,7 +174,7 @@
        ;;zig               ; C, but simpler
 
        :email
-       ;;(mu4e +gmail)
+       ;;(mu4e +org +gmail)
        ;;notmuch
        ;;(wanderlust +gmail)
 

```
2021-12-24 14:35:00 +02:00
ded9ff6c41 update_flake_lock.py: try again 2021-12-24 14:32:14 +02:00
ead6a29d86 update_flake_lock.py: skip if not github 2021-12-24 14:27:53 +02:00
5c6e079817 flake.lock: update 2021-12-22 03:46:20 +02:00
3ab0c7e69d flake: use package attribute in checks 2021-12-22 02:40:20 +02:00
c67cefcb80 flake: add package attribute
It could be used like this:
```nix
{
  inputs = {
    nix-doom-emacs.url = "github:vlaci/nix-doom-emacs";
  };

  outputs =
    { nixpkgs, nix-doom-emacs
    , ...
    }: {
      nixosConfigurations.exampleHost = nixpkgs.lib.nixosSystem {
        system = "x86_64-linux";
        modules = [
          ({ pkgs, ... }: {
            boot.isContainer = true;
            environment.systemPackages =
              let
                doom-emacs = nix-doom-emacs.package.${system} { doomPrivateDir = ./doom.d; };
              in
              [
                doom-emacs
              ];
          })
        ];
      };
    };
}
```

See documentation in `default.nix` to see what can be passed here
2021-12-22 02:34:26 +02:00
6379986368 default: restore compatibility with the HM module 2021-12-11 19:10:24 +02:00
e3517b0e00 last commit again 2021-12-11 01:56:31 +02:00
9bf739f4a7 flake: update nix-straight reference for nativeComp fix 2021-12-11 01:53:08 +02:00
fae02e7a6a readme: fix reference to nix-straight.el 2021-12-10 23:57:52 +02:00
5497709d8b add format-all override to fix +format module
Doom uses an older version of format-all[1] before breaking changes were
made upstream. We need to also use this version to not have a broken experience.

[1] https://github.com/hlissner/doom-emacs/blob/develop/modules/editor/format/packages.el#L4
2021-12-10 17:27:12 +02:00
d639071134 expose doom-emacs binaries in the main derivation 2021-12-10 16:29:00 +02:00
d259993f6d allow doomPrivateDir to be a derivation too
In my personal config I pass in a derivation as doomPrivateDir is made
by a `pkgs.runCommand`. This allows that to work again.
2021-12-10 15:33:06 +02:00
c2a0515145 license: update year & add nix-community catch-all 2021-12-10 15:15:54 +02:00
0cb69d4c20 update references: vlaci → nix-community 2021-12-10 15:13:33 +02:00
29688ccca5 nix-integration: update patch 2021-12-10 15:11:20 +02:00
258b70a441 flake.lock: update 2021-12-10 15:10:52 +02:00
6b3bfba4c8 advice: disable doom-cli--ci-deploy-hooks 2021-12-10 15:10:20 +02:00
ed01dfb918 Remove redundant loading of init.el in home-manager installation instructions
The home-manager already does this, which causes `init.el` to be loaded twice if the user also adds this snippet to their config.
2021-12-10 15:09:27 +02:00
665e729bb8 Assert that doomPrivateDir is a path 2021-12-10 15:07:53 +02:00
fee14d217b home-manager: set services.emacs.package only if it is defined
Fixes #263
2021-07-27 17:02:36 +02:00
418a0ab5bc Merge branch 'develop' 2021-07-27 15:39:23 +02:00
b9bfa3cedb org: package renamed, org-contrib added
See 9811756e80
2021-07-27 15:36:40 +02:00
8aa15e59b3 flake.lock: Updating 'doom-emacs (hlissner/doom-emacs)' - 27316850 -> 46732c0a
### Changes for doom-emacs

On branch: develop
Commits: 2731685095...46732c0ada

- [9478a6a9](9478a6a901) lang/latex +fold: fix error when yas-snippet-{beg,end} are nil
- [db83e94b](db83e94bad) Remove dependence on company for fish and bash completion
- [5c54ae13](5c54ae1329) lang/json/doctor: only check for jq if ivy is on
- [cbfd2fad](cbfd2fadc0) [:input layout bepo] Remove "W" convenience remap
- [012b759e](012b759e98) Fix [hlissner/doom-emacs⁠#5128](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5128): No format-on-save by lsp-formatters
- [03385155](033851556a) lang/lua: document fennel support in readme
- [3eac1f4e](3eac1f4e8a) removed unused use in "file-template rust main"
- [8f89e58c](8f89e58c3a) remove duplicate '+' from kotlin +lsp
- [7f878700](7f87870099) Bump flycheck-kotlin
- [b3dfd475](b3dfd4758d) don't explicitly set `projectile-completion-system`
- [25468835](2546883543) The dart config was setting the 'flutter-run-or-hot-reload' keybind with init, so if you changed the localleader in your settings, it would stay as SPC m rather than what localleader was mapped to
- [bb677cf7](bb677cf7a5) Prevent extra variable from being passed in macro.
- [c091b27e](c091b27e4a) Made changes specified in pull request
- [8c3a8352](8c3a83526b) Filter directories when purging straight repos
- [ff2d5679](ff2d56794e) Don't activate sly-mode in lisp-mode derived modes
- [044a1a5f](044a1a5f2b) Drop Emacs 26.x support
- [38bc1ab8](38bc1ab81a) Bump :tools pdf
- [9198b038](9198b03807) Bump :core
- [19edcb93](19edcb9314) Change doom-version to 3.0.0-alpha
- [3ccc12c1](3ccc12c16b) Add init.example.el one-liner for :tools lsp
- [6a23c614](6a23c6142b) tools/direnv: refactor
- [2d2246d7](2d2246d7ca) term/eshell: alias ff = find-file-other-window
- [7925759b](7925759b8e) Set the lsp-ui-sideline-actions-icon to the default
- [74fc7ae6](74fc7ae664) Fix command to show git log of current buffer file
- [43ddb109](43ddb10970) docs/faq: fix evil-snipe instructions
- [400fa083](400fa0836d) editor/evil: update disable instructions in readme
- [04eb44a6](04eb44a610) tools/pass: remove auth-source-pass recipe
- [ef84fce6](ef84fce68c) Define sh-mode for bats files
- [80db3110](80db3110a5) Made changes specified in pull request
- [6438172e](6438172e74) Fix [hlissner/doom-emacs⁠#5224](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5224): void-function error on +vc/* commands
- [8ad846e1](8ad846e15b) Fix [hlissner/doom-emacs⁠#5198](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5198): blacklist WSL_INTEROP in envvar file
- [ff2e75b1](ff2e75b15e) Remove checkboxes in issue forms
- [57026c4b](57026c4b70) Fix [hlissner/doom-emacs⁠#5169](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5169): x-underline-at-descent-line = nil
- [1a96f5b0](1a96f5b002) Fix [hlissner/doom-emacs⁠#5176](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5176): don't prompt on gt/gT (tab switch)
- [09226f90](09226f905d) Fix [hlissner/doom-emacs⁠#5155](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5155): interactive specs for tmux commands
- [5be988ac](5be988ac31) Bump :emacs dired
- [80c32eaa](80c32eaa89) Fix [hlissner/doom-emacs⁠#5176](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5176) (again): wrong interactive arg to gt/gT commands
- [36d186d1](36d186d1cd) Fix [hlissner/doom-emacs⁠#4665](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/4665): don't close annotation window on ESC
- [42ff3691](42ff369142) `SPC TAB N` binding ([hlissner/doom-emacs⁠#5173](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5173))
- [bafb3920](bafb392031) Fix fonts losing properties when resized
- [ba716d69](ba716d69f0) Fix [hlissner/doom-emacs⁠#5125](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5125): mix snippets with completion candidates
- [3aec4070](3aec407056) remove ripgrep dependency from ivy and helm readmes
- [29460d20](29460d205e) Bump :ui
- [6997adb6](6997adb654) Bump :tools
- [9df3072e](9df3072e94) Bump :checkers
- [34fae1c0](34fae1c01c) Remove remaining `Emacs27+` checks
- [721d5dd8](721d5dd853) Bump jupyter
- [3aeb0c06](3aeb0c060f) Fix [hlissner/doom-emacs⁠#5195](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5195): workspace is killed on magit commit
- [243cb43f](243cb43fec) Fix [hlissner/doom-emacs⁠#5187](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5187): syntax highlighting in ielm REPL
- [aeb809ed](aeb809ed8b) Bump :app
- [8da669ad](8da669adf0) Fix [hlissner/doom-emacs⁠#5253](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5253): error if message is called with nil arg
- [ab334559](ab334559f5) Bump :ui nav-flash
- [933dcc4d](933dcc4d19) Bump :completion
- [95f40c62](95f40c62ab) Add doom/bumpify-diff & doom/commit-bumps commands
- [d79cea2e](d79cea2e4c) Minor refactors, reformatting, & comment revision
- [f523830a](f523830a0e) Don't load core-cli on doom/reload
- [cbb0ce9f](cbb0ce9f85) Don't log hooks
- [ec956697](ec95669710) lang/javascript: remove coffee-mode
- [6be22624](6be2262423) Bump :lang
- [55c9cde6](55c9cde6ee) Bump :ui doom
- [69cfc602](69cfc60243) Bump :editor
- [084918f4](084918f4ea) editor/evil: correct evil-collection module name
- [e2ca32bd](e2ca32bd6b) Fix fill column indicator toggle on 'SPC t c'
- [9ffa5d6c](9ffa5d6c2f) org-roam-link-use-custom-faces = everywhere
- [4af3f4c4](4af3f4c435) Update ui/deft README to new format
- [5c741cb6](5c741cb65f) Fix [hlissner/doom-emacs⁠#5255](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5255): reload session after dashboard init
- [6672ee5c](6672ee5cf5) Simplify session persistence
- [aad7bc52](aad7bc521f) markdown-nested-imenu-heading-index = nil
- [8b95aa5d](8b95aa5d3e) lang/racket: add +lsp flag
- [edc527bb](edc527bb26) tools/lsp: add lsp-racket to lsp-client-packages
- [cdbd39ba](cdbd39ba26) emacs/undo: increase undo-outer-limit
- [813a60ef](813a60ef6d) Implemented the requested changes
- [8862f869](8862f8694c) Activate general-auto-unbind-keys post-startup
- [a760c679](a760c679a3) lang/beancount: remove redundant lsp config
- [4230ab9a](4230ab9ae6) docs/index: fix link to noel welsh's crash course
- [9811756e](9811756e80) Bump :lang org
- [d61a38ff](d61a38ff71) spell: fix undefined variable
2021-07-27 15:36:40 +02:00
b5bad2e829 flake.lock: Updating 'nixpkgs (NixOS/nixpkgs)' - db6e0894 -> 16105403
### Changes for nixpkgs

On branch: nixpkgs-unstable
Commits: db6e089456...16105403bd

- [e2826783](e282678367) pythonPackages.uncertainties: 3.1.5 -> 3.1.6
- [0066d898](0066d898c9) openrct2: 0.3.3 -> 0.3.4
- [6554384a](6554384a70) boolector: 3.2.1 -> 3.2.2
- [f796ccd0](f796ccd00a) vimPlugins: update
- [58fc777b](58fc777b22) vimPlugins.taboo-vim: init at 2019-08-27
- [b7320b32](b7320b325d) python3.pkgs.rtoml: 0.6.1 -> 0.7
- [51f6c77e](51f6c77e0c) bottom: 0.6.2 -> 0.6.3
- [c39aafa6](c39aafa62b) chezmoi: 2.1.1 -> 2.1.2
- [ca2db83a](ca2db83adc) csound: 6.16.0 -> 6.16.2
- [174d8c0d](174d8c0d3f) lsix: init at 1.7.4
- [1e462be4](1e462be4eb) python3Packages.ansible-core: 2.11.2 -> 2.11.3
- [32d56411](32d5641120) python3Packages.ansible-base: 2.10.11 -> 2.10.12
- [dc1137bc](dc1137bc98) python3Packages.ansible-core.collections: 4.1.0 -> 4.2.0
- [a9206d8c](a9206d8c4c) python3Packages.ansible: 2.9.23 -> 2.9.24
- [1caa4f94](1caa4f9452) docker-buildx: 0.5.1 -> 0.6.0
- [f5d25401](f5d2540160) temporal: 1.10.5 -> 1.11.1
- [547c3caf](547c3caf30) du-dust: 0.6.0 -> 0.6.1
- [8115c9c7](8115c9c7bc) exoscale-cli: 1.36.0 -> 1.37.0
- [1fa595db](1fa595db42) yoda: apply patch to fix a minor bug in yodascale
- [b7e8dc0a](b7e8dc0a0c) flow: 0.155.0 -> 0.155.1
- [1f7681c8](1f7681c8b6) frugal: 3.14.5 -> 3.14.6
- [112de3a3](112de3a3f6) i3lock-blur: init at 2.10
- [9a846d9b](9a846d9be4) containerd: 1.5.2 -> 1.5.4
- [1cf78b53](1cf78b53af) nixos/cri-o: Add RFC42 'settings' option
- [8e6c4f9a](8e6c4f9a2e) nixos/cri-o: Remove unnecessary `lib.` qualifiers
- [7594db62](7594db6233) istioctl: 1.10.2 -> 1.10.3
- [a96e02a8](a96e02a808) vscode-extensions.hashicorp.terraform: 2.13.1 -> 2.13.2
- [50270094](5027009432) kmon: 1.5.3 -> 1.5.4
- [0d70345e](0d70345ec2) kotlin: 1.5.20 -> 1.5.21
- [3e61e156](3e61e15688) node2nix: Fix hashes for patches
- [0b39735c](0b39735cdd) rm-improved: init at 0.13.0
- [bf975558](bf97555848) kubernetes: 1.21.2 -> 1.21.3
- [80d24e88](80d24e8856) cypress: 7.7.0 -> 8.0.0
- [6e001c1a](6e001c1ace) perlPackages.BKeywords: 1.21 -> 1.22
- [5c660814](5c6608144f) chromiumBeta: 92.0.4515.101 -> 92.0.4515.107
- [b9e49d25](b9e49d257c) xob: remove myself as maintainer
- [4eeb4167](4eeb416787) libwebsockets: cleanup
- [0a0f6ab8](0a0f6ab848) firecracker: use dontConfigure
- [3e75263c](3e75263ca7) lnd: 0.13.0-beta -> 0.13.1-beta
- [07b9fef4](07b9fef470) libtiff: revert to previous version on aarch64-darwin
- [8503fe22](8503fe2241) amass: 3.13.3 -> 3.13.4 ([NixOS/nixpkgs⁠#130727](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/130727))
- [46de2b8f](46de2b8ffb) pythonPackages.crate: mark broken ([NixOS/nixpkgs⁠#130017](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/130017))
- [b98c1d17](b98c1d1789) bitwig-studio: 4.0 -> 4.0.1
- [34a9c0da](34a9c0daf5) Revert "proj: 7.2.1 -> 8.0.1" + patch the test
- [b53692cd](b53692cdc6) Revert "osm2xmap: mark as broken"
- [d6f3b3f0](d6f3b3f01a) osinfo-db: deprecate phases
- [917e9707](917e97076e) vue: deprecate phases
- [0e9e0403](0e9e040375) dotnetPackages.Nuget: deprecate phases
- [abdbec43](abdbec434a) reckon: deprecate phases
- [ade7d559](ade7d55936) papertrail: deprecate phases
- [9cdaede5](9cdaede5ab) ledger2beancount: deprecate phases
- [9bd010b9](9bd010b956) fastlane: deprecate phases
- [b82f92c1](b82f92c1f6) maphosts: deprecate phases
- [833a6087](833a6087b9) ubidump: deprecate phases
- [5df11293](5df11293fe) ditaa: deprecate phases
- [10af5753](10af5753c9) collectd-data: deprecate phases
- [67d0658e](67d0658e65) ossec: remove phases
- [f145d62c](f145d62cad) cri-o-unwrapped: 1.21.1 -> 1.21.2
- [aef1db45](aef1db45b3) ossec: convert to pname + version; cleanup
- [4b518a31](4b518a3132) maphosts: convert to pname + version
- [72775d4e](72775d4ea4) nix-prefetch: cleanup
- [2e09265a](2e09265a54) nix-template: 0.1.1 -> 0.1.4 ([NixOS/nixpkgs⁠#130580](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/130580))
- [6cafd781](6cafd781ca) nix-script: remove phases ([NixOS/nixpkgs⁠#130742](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/130742))
- [25404a34](25404a3418) emv: deprecate phases
- [d36cf5c0](d36cf5c023) gibo: remove phases
- [928c7dbb](928c7dbb61) firefox-bin: 90.0 -> 90.0.1
- [1ad4db95](1ad4db95fb) firefox: 90.0 -> 90.0.1
- [fc125d06](fc125d06bc) taskwarrior: Remove space from URL
- [21b39527](21b39527bf) warrant: Remove space from URL
- [c48be3c1](c48be3c17d) copy-tarballs.pl: Handle SRI hashes
- [105602b5](105602b5ae) roundcube: remove composer.json-dist to prevent roundcube from trying to update composer.json
- [5143ab9f](5143ab9f74) tigervnc, tightvnc: add basic tests
- [cfb935c5](cfb935c549) tigervnc: remove fontDirectories
- [dbbbb190](dbbbb190b1) palemoon: 29.2.1 -> 29.3.0
- [d96748cf](d96748cf42) pantheon.elementary-sound-theme: 1.0 -> 1.1.0
- [0776027a](0776027aad) nerdctl: 0.10.0 -> 0.11.0
- [8ba51139](8ba51139bf) ix: deprecate phases
- [b2144985](b214498527) plowshare: deprecate phases
- [1aa335e9](1aa335e942) ponysay: remove phases
- [5070a55b](5070a55b5b) pws: deprecate phases
- [e66237af](e66237af15) nixStable: 2.3.12 -> 2.3.14
- [a94dba42](a94dba429b) maintainers: add DeeUnderscore
- [87c2751d](87c2751d0b) libbass: fix sha256sum
- [8adb7faf](8adb7faf49) ultrastar-manager: deprecate phases
- [835dedfd](835dedfdbd) streamlink: 2.1.1 -> 2.2.0
- [8c9748cd](8c9748cd5e) llvmPackages_11.libclc: 2019-06-09 -> 11.0.1 ([NixOS/nixpkgs⁠#111065](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/111065))
- [f8dc8497](f8dc849739) mtools: 3.0.31 -> 4.0.33
- [918af176](918af17672) powerline-go: 1.21.0 -> 2021-07-15
- [ab7a73a2](ab7a73a286) ponysay: cleanup, pname + version
- [89271903](89271903b3) pws: convert to pname + version
- [61e0f211](61e0f21153) pylsp-mypy: init at 0.5.1 ([NixOS/nixpkgs⁠#130642](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/130642))
- [01db7741](01db77414a) ditaa: convert to pname + version; cleanup ([NixOS/nixpkgs⁠#130758](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/130758))
- [528e90ad](528e90adf2) fast-cli: 1.0.0 -> 3.0.1 ([NixOS/nixpkgs⁠#130698](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/130698))
- [fd1ab319](fd1ab319b7) logisim: cleanup
- [50e45c0f](50e45c0f96) powerline-go: fix version number
- [9b3e240b](9b3e240b24) maintainers: add heph2
- [6671b113](6671b113bd) telescope: init at 0.3.1
- [bbdf2e93](bbdf2e931a) squashfs-tools-ng: 1.1.1 -> 1.1.2
- [e6592586](e6592586d5) eclair: init at 0.6.1
- [6ddefbdd](6ddefbdd3c) zellij: 0.14.0 -> 0.15.0
- [31990d01](31990d01dc) osu-lazer: 2021.707.0 -> 2021.720.0
- [a015aaf1](a015aaf1c9) dotnetPackages.Nuget: fix runtime error
- [cff54843](cff5484394) cascadia-code: 2105.24 -> 2106.17
- [013fe001](013fe00139) anki-bin: install desktop entry and man page
- [3e3e5dcc](3e3e5dcc17) andika: 6.000 -> 6.001
- [3c093fd0](3c093fd023) folks: 0.15.2 -> 0.15.3
- [0ad752fe](0ad752febe) sqlfluff: 0.6.0 -> 0.6.1
- [53b07b7f](53b07b7f33) CopyQ: 3.13.0 -> 4.1.0
- [5d01b520](5d01b52010) corerad: 0.3.2 -> 0.3.3
- [d3c568e1](d3c568e16a) nixos/clipcat: add user service module
- [1916bd87](1916bd8717) mill: 0.9.8 -> 0.9.9
- [f150d0a6](f150d0a6bd) fetchurl: replace dead sourceforge mirrors ([NixOS/nixpkgs⁠#130834](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/130834))
- [2cc8ecd2](2cc8ecd237) tfsec: 0.48.7 -> 0.50.3
- [5f496e0d](5f496e0da3) gnome.gnome-desktop: 40.1 -> 40.3
- [34141d22](34141d226a) exploitdb: 2021-07-17 -> 2021-07-20
- [c00d507f](c00d507f97) go: enable MIPS GOARCH/cross integration
- [af9ea494](af9ea49430) chromiumBeta: Temporarily build on Hydra
- [1249c9a1](1249c9a174) gh: 1.12.1 -> 1.13.1
- [5d55727b](5d55727b30) gnome.gnome-shell: 40.2 -> 40.3
- [4711f4b6](4711f4b61e) pythonPackages.teletype: init at 1.1.0 ([NixOS/nixpkgs⁠#130871](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/130871))
- [b8297c00](b8297c00c9) ci: add no-channel check ([NixOS/nixpkgs⁠#109543](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/109543))
- [4a338e33](4a338e3317) hashcat: 6.2.2 -> 6.2.3 ([NixOS/nixpkgs⁠#130870](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/130870))
- [16105403](16105403bd) gpgme: upstream patch for failing test
2021-07-27 15:08:42 +02:00
197f1422ff flake.lock: Updating 'emacs-overlay (nix-community/emacs-overlay)' - 2e084860 -> be04b45e
### Changes for emacs-overlay

On branch: master
Commits: 2e084860f8...be04b45efb

- [76f480f7](76f480f780) Updated repos/elpa
- [68b98553](68b98553f7) Updated repos/emacs
- [7f1c0611](7f1c061166) Updated repos/melpa
- [e15ba6d7](e15ba6d7ab) Updated repos/emacs
- [5e93dbe9](5e93dbe9a2) Updated repos/melpa
- [26d509b6](26d509b6a9) Updated repos/elpa
- [a92dd252](a92dd2525b) Updated repos/emacs
- [a8eda531](a8eda53100) Updated repos/melpa
- [5ee8f211](5ee8f21122) Updated repos/melpa
- [a6903b78](a6903b78ab) Updated repos/emacs
- [7c0a9144](7c0a914426) Updated repos/melpa
- [e15aac82](e15aac8282) Updated repos/melpa
- [53539776](53539776f1) Updated repos/emacs
- [e8f8f9a7](e8f8f9a724) Updated repos/elpa
- [0e3a3860](0e3a38600e) Updated repos/melpa
- [7e565fea](7e565feabe) Updated repos/elpa
- [e915e288](e915e28820) Updated repos/emacs
- [84adce2b](84adce2b53) Updated repos/melpa
- [b02ea48c](b02ea48cb9) Updated repos/org
- [9fbb5e43](9fbb5e43ed) Updated repos/melpa
- [d8f8a972](d8f8a9725d) Updated repos/emacs
- [d072e0df](d072e0df85) Updated repos/emacs
- [7970912e](7970912ee7) Updated repos/melpa
- [833af0ff](833af0ff8f) Updated repos/melpa
- [25abd401](25abd401ba) Updated repos/emacs
- [53975298](5397529858) Updated repos/melpa
- [d041bd6b](d041bd6bcd) Updated repos/emacs
- [7b82140a](7b82140aed) Updated repos/melpa
- [c98b3a64](c98b3a644b) Updated repos/melpa
- [8d4495c0](8d4495c03b) Updated repos/elpa
- [3813dda9](3813dda98c) Updated repos/emacs
- [bfc8f6ed](bfc8f6edcb) Updated repos/melpa
- [926b9ab3](926b9ab372) Updated repos/emacs
- [0c6788be](0c6788be21) Updated repos/melpa
- [42a58666](42a586664a) Updated repos/emacs
- [96e3b61b](96e3b61bc9) Updated repos/melpa
- [636f5166](636f516660) Updated repos/elpa
- [b2cdedb3](b2cdedb357) Updated repos/emacs
- [d32822d5](d32822d549) Updated repos/melpa
- [42c7df09](42c7df0919) Updated repos/elpa
- [ee90891d](ee90891da8) Updated repos/emacs
- [4344c0e2](4344c0e2e7) Updated repos/melpa
- [368a769a](368a769ae9) Updated repos/emacs
- [8925f488](8925f488f0) Updated repos/melpa
- [ad89fb00](ad89fb00ad) Updated repos/emacs
- [de44618b](de44618b32) Updated repos/melpa
- [8bd5940b](8bd5940b09) Updated repos/emacs
- [a95390c9](a95390c9b5) Updated repos/melpa
- [12aefa1a](12aefa1afc) Updated repos/melpa
- [d9d2f68a](d9d2f68a49) Updated repos/elpa
- [215fb159](215fb1596f) Updated repos/melpa
- [7a977ca2](7a977ca2ae) Updated repos/emacs
- [dd25e125](dd25e1255c) Updated repos/melpa
- [3c548f0c](3c548f0c1e) Updated repos/emacs
- [88b0e77d](88b0e77dec) Updated repos/melpa
- [b3b27028](b3b2702867) Updated repos/emacs
- [261fb510](261fb5100a) Updated repos/emacs
- [c015a0e2](c015a0e27b) Updated repos/org
- [35123a8b](35123a8bb7) Updated repos/emacs
- [09ca1577](09ca157752) Updated repos/melpa
- [86a7a6c3](86a7a6c3e4) Updated repos/emacs
- [60b2b8c9](60b2b8c9ae) Updated repos/melpa
- [84b7d01c](84b7d01c1f) Updated repos/elpa
- [adda7c0c](adda7c0c69) Updated repos/melpa
- [1a57d284](1a57d284a2) Updated repos/emacs
- [e320d7eb](e320d7eb4b) Updated repos/melpa
- [0b86041a](0b86041a9b) Updated repos/emacs
- [5cb235bd](5cb235bd3d) Updated repos/melpa
- [f09b3102](f09b310259) Updated repos/melpa
- [8650f9e9](8650f9e970) Updated repos/elpa
- [0325d195](0325d19584) Updated repos/emacs
- [08d56ffc](08d56ffc15) Updated repos/melpa
- [4e62614a](4e62614ab5) Updated repos/emacs
- [14e83e6d](14e83e6d89) Updated repos/melpa
- [6a7a165a](6a7a165a2f) Updated repos/emacs
- [4c709c19](4c709c19bb) Updated repos/melpa
- [0452c6e4](0452c6e4c8) Updated repos/elpa
- [977c17ec](977c17ecfb) Updated repos/emacs
- [06366ac2](06366ac2a8) Updated repos/elpa
- [d5ee2728](d5ee2728a7) Updated repos/emacs
- [4f428ff4](4f428ff451) Updated repos/melpa
- [c9dfd38a](c9dfd38aeb) Updated repos/melpa
- [086fdea4](086fdea407) Updated repos/emacs
- [47a84eaa](47a84eaa4d) Updated repos/melpa
- [70799bd9](70799bd944) Updated repos/emacs
- [9a1c7be0](9a1c7be0e4) Updated repos/melpa
- [cb827e59](cb827e5952) Updated repos/melpa
- [af6119a8](af6119a868) Updated repos/emacs
- [458d30ef](458d30ef17) Updated repos/melpa
- [4470595d](4470595d93) Updated repos/emacs
- [e4737087](e473708767) Updated repos/emacs
- [85e738f6](85e738f6da) Updated repos/org
- [5c20a170](5c20a170b2) Updated repos/melpa
- [8e25e4f1](8e25e4f128) Updated repos/emacs
- [0acff8e1](0acff8e127) Updated repos/emacs
- [d86e69ba](d86e69bab8) Updated repos/melpa
- [ce0e9482](ce0e9482d5) Updated repos/melpa
- [fd5e7056](fd5e7056cf) Updated repos/elpa
- [037230b5](037230b5ef) Updated repos/emacs
- [9e8eb5db](9e8eb5db54) Updated repos/melpa
- [5e4c61f9](5e4c61f998) Updated repos/emacs
- [370ad6b1](370ad6b1bd) Updated repos/melpa
- [a65cc07e](a65cc07e87) Updated repos/melpa
- [15bc5650](15bc56505c) Updated repos/emacs
- [3768be42](3768be42b9) Updated repos/emacs
- [1c22ff8f](1c22ff8f8f) Updated repos/melpa
- [ccc073fa](ccc073fa35) Updated repos/emacs
- [40e6376f](40e6376f2d) Updated repos/melpa
- [be04b45e](be04b45efb) Updated repos/emacs
2021-07-27 15:07:44 +02:00
8fd1c85e08 flake.lock: Updating 'evil-markdown (Somelauw/evil-markdown)' - 064fe9b4 -> 8e6cc68a
### Changes for evil-markdown

On branch: master
Commits: 064fe9b476...8e6cc68af8

- [968ac042](968ac042a3) Make key themes configurable
2021-07-27 15:07:27 +02:00
1552ce1b3f flake.lock: Updating 'revealjs (hakimel/reveal.js)' - ade23457 -> b18f12d9
### Changes for revealjs

On branch: master
Commits: ade234576e...b18f12d964

- [20d7c87a](20d7c87a2f) fix(highlight): allow pre fragments
- [4d443826](4d443826ab) Update build output for highlightjs
- [28509e0c](28509e0c39) fix test
- [9ca5068e](9ca5068eee) Update whitespaces
2021-07-27 14:57:11 +02:00
e1a0095ff3 flake.lock: Updating 'org-mode (emacs-straight/org-mode)' - c3c89d56 -> 604bfd9d
### Changes for org-mode

On branch: master
Commits: c3c89d569a...604bfd9d75

- [565361eb](565361eb69) org-keys: Do not bind <tab>, ever
- [221c8e29](221c8e298f) ob-tangle: Parse correctly tangle options
- [d1900adf](d1900adfbe) ol-bibtex: Added url and doi as optional entries for BiBTeX export
- [f76d4d10](f76d4d103f) ob-fortran: Use a defcustom for fortran compiler
- [ee652a47](ee652a47df) org-keys: Remove fancy RET keybindings
- [622f9fa7](622f9fa76c) org: Use crm for completing tags
- [fed07be5](fed07be5b8) element: Add citation support
- [4c646a6b](4c646a6bde) ox: Introduce "raw" pseudo objects
- [a922b176](a922b1764d) faces: Add `org-cite' and `org-cite-key' faces
- [e844a6fd](e844a6fd41) oc: Add Org Cite library
- [44156353](44156353c9) oc-basic: Implement `basic' citation processor
- [2c2b7203](2c2b720394) ox: Plug citations into export process
- [a20a3ad5](a20a3ad5f1) Plug citations into `org-open-at-point'
- [524d8fe4](524d8fe4c1) Plug citations into fontification process
- [ef79a8d8](ef79a8d8e6) org-keys: Plug citation insertion
- [c089c234](c089c234bb) Allow `org-edit-special' to open "bibliography" files
- [d6cb37f4](d6cb37f4be) oc-natbib: Implement `natbib' citation processor
- [ae5f5151](ae5f5151fe) oc-biblatex: Implement `biblatex' citation processor
- [971c1359](971c1359a5) oc-csl: Implement `csl' citation processor
- [32739e35](32739e35e3) ox-latex: Change default compiler to latexmk
- [61e08373](61e0837325) org-attach: Possibly delete empty attach directory
- [1ee52c5e](1ee52c5eb6) Backport commit 348b2aed0 from Emacs
- [604bfd9d](604bfd9d75) oc-csl: be more caution about the csl etc location
2021-07-27 14:56:57 +02:00
41f8c53d2c flake.lock: Updating 'nixpkgs (NixOS/nixpkgs)' - db6e0894 -> 90cbe950
### Changes for nixpkgs

On branch: nixpkgs-unstable
Commits: db6e089456...90cbe95037

- [2151e87d](2151e87d56) chia: 1.2.0 -> 1.2.1
- [2f5679a4](2f5679a476) python3Packages.garminconnect-ha: 0.1.6 -> 0.1.13
- [cfc749e5](cfc749e5b4) digikam: 7.2.0 -> 7.3.0
- [4112eb27](4112eb273e) cosign: 0.5.0 -> 0.6.0
- [6f0f3940](6f0f39400d) drone: 2.0.0 -> 2.0.3
- [c45c6acb](c45c6acbfe) maintainers: add nickcao
- [cf06420c](cf06420c47) k0sctl: init at 0.9.0
- [8ef45e7a](8ef45e7a25) plex: 1.23.3.4707-ebb5fe9f3 -> 1.23.4.4805-186bae04e
- [9e18ae43](9e18ae4302) git-vendor: 1.2.1 -> 1.2.2
- [98ba3939](98ba393909) gmnitohtml: init at 0.1.1
- [df3aa47c](df3aa47c5a) icingaweb2: 2.8.2 -> 2.8.3
- [428d2a2f](428d2a2f51) kicad-unstable: 2021-05-16 -> 2021-07-12
- [0e6d1869](0e6d186906) kicad-unstable: needs python
- [3e5c6c24](3e5c6c24d6) jrsonnet: 0.4.1 -> 0.4.2
- [852af2e8](852af2e84f) buf: 0.43.2 -> 0.44.0
- [70002f24](70002f24a5) bat: 0.18.1 -> 0.18.2
- [a07a62d2](a07a62d26d) mutt: 2.1.0 -> 2.1.1
- [f082c435](f082c435dd) apostrophe: fix HTML export by referencing fira fonts from store
- [2d3a92e9](2d3a92e944) lowdown: 0.8.4 -> 0.8.5
- [64f7cb57](64f7cb574a) flann: refactor ([NixOS/nixpkgs⁠#129491](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/129491))
- [885cae9d](885cae9dfb) remmina: 1.4.13 -> 1.4.20
- [8b055178](8b055178de) matrix-synapse: 1.37.1 -> 1.38.0
- [9caefab5](9caefab5aa) deno: 1.11.5 -> 1.12.0
- [22812f4b](22812f4bec) buf: add patch comment
- [25eb6344](25eb6344d0) go_1_15: 1.15.13 -> 1.15.14
- [4695639f](4695639fde) go_1_16: 1.16.5 -> 1.16.6
- [2ff6e037](2ff6e037a9) icingaweb2: 2.8.3 -> 2.9.0
- [4a30039b](4a30039b27) pijul: 1.0.0-alpha.50 → 1.0.0-alpha.52
- [aae29c6e](aae29c6e10) icingaweb2-ipl: Init at 0.6.0
- [3af5d881](3af5d881e0) icingaweb2-thirdparty: Init at 0.10.0
- [6d203a68](6d203a68c6) nixos/icingaweb2: Add ipl and thirdparty libraries
- [95172d9e](95172d9ebe) idutils: fix by using latest gnulib
- [1d8caaff](1d8caaff1c) xprintidle-ng: latest gnulib requires autoconf 2.64
- [8f68b7c1](8f68b7c15d) lbzip2: latest gnulib requires autoconf 2.64
- [7128fc62](7128fc621d) grub: latest gnulib requires autoconf 2.64
- [66ef9b55](66ef9b55f0) grub2: needs older version of gnulib
- [030b3e5a](030b3e5a12) gnulib: update to latest version from savanah
- [21f41d8b](21f41d8b33) nixos/ddclient: add support for IPv6
- [f4a523bc](f4a523bc9c) vimPlugins.onedark-vim: set branch to main
- [8fd35a32](8fd35a326d) vimPlugins: update
- [242c2dd8](242c2dd8e5) vimPlugins.tokyonight-nvim: init at 2021-07-09
- [322654b8](322654b880) factorio-experimental: 1.1.35 -> 1.1.36
- [54ec249b](54ec249bbe) rofi-vpn: init at 0.2.0
- [9cff3c55](9cff3c556f) thunderbird-bin: 78.11.0 -> 78.12.0
- [db3297a0](db3297a081) thunderbird: 78.11.0 -> 78.12.0
- [55a60de2](55a60de2ac) remove va1entin as maintainer
- [2913fceb](2913fceb38) polybar: use config.pulseaudio to activate pulseaudio
- [05447d62](05447d62f9) polybar: format
- [264cfed1](264cfed1b4) texlive: remove empty list
- [decadbb6](decadbb63a) termius: switch to a official source
- [b3f974ee](b3f974ee08) delta: 0.8.2 -> 0.8.3
- [4b4c8650](4b4c8650a8) xorgserver: override build OS name
- [eeb810d9](eeb810d943) python3Packages.archinfo: 9.0.8761 -> 9.0.9031
- [a12662eb](a12662eba8) python3Packages.ailment: 9.0.8761 -> 9.0.9031
- [bc4acb5b](bc4acb5bb0) python3Packages.pyvex: 9.0.8761 -> 9.0.9031
- [c36a4169](c36a4169cf) python3Packages.claripy: 9.0.8761 -> 9.0.9031
- [700bcad8](700bcad84d) python3Packages.cle: 9.0.8761 -> 9.0.9031
- [c9c530fb](c9c530fb3a) hexyl: 0.8.0 -> 0.9.0
- [2da9ae84](2da9ae847c) pythonPackages.push_receiver: init at 0.1.1
- [b541e761](b541e76166) python3Packages.pyupgrade: 2.20.0 -> 2.21.0
- [9cecae1b](9cecae1bc5) temporal: init 1.10.5 ([NixOS/nixpkgs⁠#130099](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/130099))
- [3d260a2d](3d260a2d0e) libsForQt5.kimageformats: fix CVE-2021-36083 ([NixOS/nixpkgs⁠#130115](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/130115))
- [30ce6d8a](30ce6d8a0c) kfctl: init at 1.2.0
- [0fcc0e97](0fcc0e972c) zola: 0.13.0 -> unstable-2021-07-10 ([NixOS/nixpkgs⁠#129956](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/129956))
- [4b04945c](4b04945c63) yandex-browser: init at 21.5.3.753-1 ([NixOS/nixpkgs⁠#128940](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128940))
- [dfe4ec8f](dfe4ec8f17) vk-cli: init at 0.7.6 ([NixOS/nixpkgs⁠#128906](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128906))
- [b312fdc6](b312fdc626) orocos-kdl: 1.5.0 propagation fix
- [0f236088](0f236088ee) libproxy: Make JavaScript optional
- [48db86f4](48db86f42c) gnomeExtensions: Remove remove-dropdown-arrows
- [6aae2894](6aae2894ef) gnomeExtensions: rename uuid field to extensionUuid
- [f96ee10c](f96ee10c88) open-vm-tools: 11.2.5 -> 11.3.0 ([NixOS/nixpkgs⁠#129978](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/129978))
- [bffbf461](bffbf4617a) gnomeExtensions: integrate manually packaged extensions better with the others
- [5128ec5f](5128ec5f06) gnomeExtensions.workspace-matrix: Remove manual packaging
- [ba3562ed](ba3562ed09) gnomeExtensions.window-is-ready-remover: Remove manual packaging
- [c5aa58a0](c5aa58a015) gnomeExtensions.timepp: Remove manual packaging
- [33cf6530](33cf6530fe) gnomeExtensions.noannoyance: Remove manual packaging
- [ee5b47ec](ee5b47ecc2) gnomeExtensions.mpris-indicator-button: Remove manual packaging
- [9dcb9aec](9dcb9aecc1) gnomeExtensions.material-shell: Remove manual packaging
- [8dd60244](8dd6024493) gnomeExtensions.hot-edge: Remove manual packaging
- [a4d668bc](a4d668bc07) gnomeExtensions: Remove gtile
- [2e0ffbe7](2e0ffbe754) gnomeExtensions.draw-on-your-screen: Remove manual packaging
- [1149365f](1149365fd0) gnomeExtensions.disable-unredirect: Remove manual packaging
- [1d1a4981](1d1a498111) gnomeExtensions.clipboard-indicator: Remove manual packaging
- [e7d7df79](e7d7df799f) gnomeExtensions.dynamic-panel-transparency: Remove manual packaging
- [3c85c0c9](3c85c0c975) gnomeExtensions.appindicator: Remove manual packaging
- [388a4ef4](388a4ef423) treewide: convert all links git.archlinux.org to github.com/archlinux/svntogit-*
- [4d581620](4d581620e2) vscodium: 1.58.0 -> 1.58.1
- [b7a7969c](b7a7969c1a) layan-gtk-theme: init at 2021-06-30 ([NixOS/nixpkgs⁠#130064](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/130064))
- [aab4b6b4](aab4b6b493) rdiff-backup: 1.3.3 -> 2.0.5
- [39682c11](39682c1109) dqlite: 1.7.0 -> 1.8.0
- [77898696](77898696a8) lxd: 4.15 -> 4.16
- [e14c2459](e14c245934) flake/lib.nixosSystem: add `_file`-keys for error-location
- [a14985cd](a14985cd28) ipxe: allow building on aarch64
- [2668c758](2668c75886) ipxe: fix installPhase and license
- [702a1c23](702a1c23a4) nixos/test-driver: allow overriding qemu binary in create_startcommand
- [930daac3](930daac345) nixos/boot: test on aarch64
- [86bb1290](86bb129011) glfw: add version with wayland support ([NixOS/nixpkgs⁠#129367](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/129367))
- [d3bc5d5b](d3bc5d5b7a) discourse.plugins: Update and add metadata
- [3300282d](3300282db3) discourse: Add `update-plugins` action to update.py
- [eb122119](eb122119a0) discourseAllPlugins: Provide a discourse derivation with all plugins
- [20548f05](20548f050e) nixos/discourse: Update plugin documentation
- [a2dbc3af](a2dbc3af1d) discourse: Remove architecture bound platforms from Gemfile.lock
- [61f4429f](61f4429fbd) discourse: Use `terser` when building assets
- [60d78d7f](60d78d7f1f) discourse: 2.7.4 -> 2.7.5
- [96a37990](96a3799050) chromiumDev: 93.0.4557.4 -> 93.0.4573.0
- [7ea06383](7ea0638338) grepm: deprecate phases
- [339365aa](339365aa67) pdfdiff: deprecate phases
- [090638e1](090638e14e) borgbackup: only include pyfuse3 when not on darwin
- [91932cbd](91932cbdfa) sublime3/4: deprecate phases ([NixOS/nixpkgs⁠#130169](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/130169))
- [d44ce53e](d44ce53e07) svtplay-dl: 4.0 -> 4.1
- [cf8defb1](cf8defb1dd) nodejs-16_x: 16.4.2 -> 16.5.0
- [644b656d](644b656d09) starship: 0.55.0 -> 0.56.0
- [895e757e](895e757e86) reviewdog: 0.11.0 -> 0.12.0
- [cdf9e86a](cdf9e86ad1) leo3-bin: deprecate phases
- [7cae0551](7cae055159) steamPackages.steam-runtime: 20210527.0 -> 20210630.0
- [8a815af4](8a815af428) citrix-workspace: 21.03.0 -> 21.06.0
- [d75b67bf](d75b67bfa4) rebar3: skip failing tests on M1 chip
- [145a3d08](145a3d084a) nixos/snapraid: init
- [c612c5a5](c612c5a555) ngrok: fix build on aarch64-darwin
- [43422fc8](43422fc81c) tfsec: 0.45.3 -> 0.48.2
- [c2554088](c255408808) exploitdb: 2021-07-10 -> 2021-07-14
- [202cd8e9](202cd8e94b) python3Packages.angrop: 9.0.8761 -> 9.0.9031
- [9c1c556d](9c1c556dcf) python3Packages.nampa: init at 1.0
- [8a80d965](8a80d96506) python3Packages.angr: 9.0.8761 -> 9.0.9031
- [2463620f](2463620fc2) nixos/vaultwarden: make package configurable ([NixOS/nixpkgs⁠#113216](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/113216))
- [682d097e](682d097e0f) open-policy-agent: 0.30.0 -> 0.30.2
- [208fc927](208fc927f5) pythonPackages.simanneal: 0.4.2 -> 0.5.0
- [b1d1ecb7](b1d1ecb7f1) python3Packages.pure-eval: 0.1.0 -> 0.2.1
- [46e3102d](46e3102da1) python3Packages.stack-data: 0.0.7 -> 0.1.0
- [6c4e15b2](6c4e15b2c2) flashfocus: 2.2.2 -> 2.2.3
- [e57571bd](e57571bdb6) gappa: 1.3.5 → 1.4.0
- [aee00346](aee00346d8) ocamlPackages.bls12-381 ([NixOS/nixpkgs⁠#129509](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/129509))
- [d873c3d4](d873c3d4dc) nodePackages: Add jsonplaceholder
- [0f4cee58](0f4cee585a) ocamlPackages.resto: init at 0.6.1 ([NixOS/nixpkgs⁠#129522](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/129522))
- [204f7dc3](204f7dc335) ocamlPackages.irmin: 2.6.0 -> 2.7.1 ([NixOS/nixpkgs⁠#129434](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/129434))
- [d9808563](d980856325) nodePackages: Regenerate
- [6050b707](6050b7079d) cypress.tests.example: Generate files
- [5bf31fbb](5bf31fbb6d) cypress.tests.example: init
- [9332afa7](9332afa7d3) cypress: Format with nixpkgs-fmt
- [1a81de7c](1a81de7c72) signal-desktop: 5.8.0 -> 5.9.0
- [b22b804e](b22b804e67) chromiumBeta: 92.0.4515.93 -> 92.0.4515.101
- [e22bd598](e22bd59820) nixos/xwayland: Correctly set the default package
- [0e06fbbf](0e06fbbfa0) the-powder-toy: 95.0 -> 96.0.348
2021-07-27 14:56:47 +02:00
b08b6983d4 flake.lock: Updating 'emacs-overlay (nix-community/emacs-overlay)' - 2e084860 -> 977c17ec
### Changes for emacs-overlay

On branch: master
Commits: 2e084860f8...977c17ecfb

- [76f480f7](76f480f780) Updated repos/elpa
- [68b98553](68b98553f7) Updated repos/emacs
- [7f1c0611](7f1c061166) Updated repos/melpa
- [e15ba6d7](e15ba6d7ab) Updated repos/emacs
- [5e93dbe9](5e93dbe9a2) Updated repos/melpa
- [26d509b6](26d509b6a9) Updated repos/elpa
- [a92dd252](a92dd2525b) Updated repos/emacs
- [a8eda531](a8eda53100) Updated repos/melpa
- [5ee8f211](5ee8f21122) Updated repos/melpa
- [a6903b78](a6903b78ab) Updated repos/emacs
- [7c0a9144](7c0a914426) Updated repos/melpa
- [e15aac82](e15aac8282) Updated repos/melpa
- [53539776](53539776f1) Updated repos/emacs
- [e8f8f9a7](e8f8f9a724) Updated repos/elpa
- [0e3a3860](0e3a38600e) Updated repos/melpa
- [7e565fea](7e565feabe) Updated repos/elpa
- [e915e288](e915e28820) Updated repos/emacs
- [84adce2b](84adce2b53) Updated repos/melpa
- [b02ea48c](b02ea48cb9) Updated repos/org
- [9fbb5e43](9fbb5e43ed) Updated repos/melpa
- [d8f8a972](d8f8a9725d) Updated repos/emacs
- [d072e0df](d072e0df85) Updated repos/emacs
- [7970912e](7970912ee7) Updated repos/melpa
- [833af0ff](833af0ff8f) Updated repos/melpa
- [25abd401](25abd401ba) Updated repos/emacs
- [53975298](5397529858) Updated repos/melpa
- [d041bd6b](d041bd6bcd) Updated repos/emacs
- [7b82140a](7b82140aed) Updated repos/melpa
- [c98b3a64](c98b3a644b) Updated repos/melpa
- [8d4495c0](8d4495c03b) Updated repos/elpa
- [3813dda9](3813dda98c) Updated repos/emacs
- [bfc8f6ed](bfc8f6edcb) Updated repos/melpa
- [926b9ab3](926b9ab372) Updated repos/emacs
- [0c6788be](0c6788be21) Updated repos/melpa
- [42a58666](42a586664a) Updated repos/emacs
- [96e3b61b](96e3b61bc9) Updated repos/melpa
- [636f5166](636f516660) Updated repos/elpa
- [b2cdedb3](b2cdedb357) Updated repos/emacs
- [d32822d5](d32822d549) Updated repos/melpa
- [42c7df09](42c7df0919) Updated repos/elpa
- [ee90891d](ee90891da8) Updated repos/emacs
- [4344c0e2](4344c0e2e7) Updated repos/melpa
- [368a769a](368a769ae9) Updated repos/emacs
- [8925f488](8925f488f0) Updated repos/melpa
- [ad89fb00](ad89fb00ad) Updated repos/emacs
- [de44618b](de44618b32) Updated repos/melpa
- [8bd5940b](8bd5940b09) Updated repos/emacs
- [a95390c9](a95390c9b5) Updated repos/melpa
- [12aefa1a](12aefa1afc) Updated repos/melpa
- [d9d2f68a](d9d2f68a49) Updated repos/elpa
- [215fb159](215fb1596f) Updated repos/melpa
- [7a977ca2](7a977ca2ae) Updated repos/emacs
- [dd25e125](dd25e1255c) Updated repos/melpa
- [3c548f0c](3c548f0c1e) Updated repos/emacs
- [88b0e77d](88b0e77dec) Updated repos/melpa
- [b3b27028](b3b2702867) Updated repos/emacs
- [261fb510](261fb5100a) Updated repos/emacs
- [c015a0e2](c015a0e27b) Updated repos/org
- [35123a8b](35123a8bb7) Updated repos/emacs
- [09ca1577](09ca157752) Updated repos/melpa
- [86a7a6c3](86a7a6c3e4) Updated repos/emacs
- [60b2b8c9](60b2b8c9ae) Updated repos/melpa
- [84b7d01c](84b7d01c1f) Updated repos/elpa
- [adda7c0c](adda7c0c69) Updated repos/melpa
- [1a57d284](1a57d284a2) Updated repos/emacs
- [e320d7eb](e320d7eb4b) Updated repos/melpa
- [0b86041a](0b86041a9b) Updated repos/emacs
- [5cb235bd](5cb235bd3d) Updated repos/melpa
- [f09b3102](f09b310259) Updated repos/melpa
- [8650f9e9](8650f9e970) Updated repos/elpa
- [0325d195](0325d19584) Updated repos/emacs
- [08d56ffc](08d56ffc15) Updated repos/melpa
- [4e62614a](4e62614ab5) Updated repos/emacs
- [14e83e6d](14e83e6d89) Updated repos/melpa
- [6a7a165a](6a7a165a2f) Updated repos/emacs
- [4c709c19](4c709c19bb) Updated repos/melpa
- [0452c6e4](0452c6e4c8) Updated repos/elpa
- [977c17ec](977c17ecfb) Updated repos/emacs
2021-07-27 14:56:39 +02:00
6b4c7afd2c flake.lock: Updating 'doom-emacs (hlissner/doom-emacs)' - 27316850 -> 4230ab9a
### Changes for doom-emacs

On branch: develop
Commits: 2731685095...4230ab9ae6

- [9478a6a9](9478a6a901) lang/latex +fold: fix error when yas-snippet-{beg,end} are nil
- [db83e94b](db83e94bad) Remove dependence on company for fish and bash completion
- [5c54ae13](5c54ae1329) lang/json/doctor: only check for jq if ivy is on
- [cbfd2fad](cbfd2fadc0) [:input layout bepo] Remove "W" convenience remap
- [012b759e](012b759e98) Fix [hlissner/doom-emacs⁠#5128](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5128): No format-on-save by lsp-formatters
- [03385155](033851556a) lang/lua: document fennel support in readme
- [3eac1f4e](3eac1f4e8a) removed unused use in "file-template rust main"
- [8f89e58c](8f89e58c3a) remove duplicate '+' from kotlin +lsp
- [7f878700](7f87870099) Bump flycheck-kotlin
- [b3dfd475](b3dfd4758d) don't explicitly set `projectile-completion-system`
- [25468835](2546883543) The dart config was setting the 'flutter-run-or-hot-reload' keybind with init, so if you changed the localleader in your settings, it would stay as SPC m rather than what localleader was mapped to
- [bb677cf7](bb677cf7a5) Prevent extra variable from being passed in macro.
- [c091b27e](c091b27e4a) Made changes specified in pull request
- [8c3a8352](8c3a83526b) Filter directories when purging straight repos
- [ff2d5679](ff2d56794e) Don't activate sly-mode in lisp-mode derived modes
- [044a1a5f](044a1a5f2b) Drop Emacs 26.x support
- [38bc1ab8](38bc1ab81a) Bump :tools pdf
- [9198b038](9198b03807) Bump :core
- [19edcb93](19edcb9314) Change doom-version to 3.0.0-alpha
- [3ccc12c1](3ccc12c16b) Add init.example.el one-liner for :tools lsp
- [6a23c614](6a23c6142b) tools/direnv: refactor
- [2d2246d7](2d2246d7ca) term/eshell: alias ff = find-file-other-window
- [7925759b](7925759b8e) Set the lsp-ui-sideline-actions-icon to the default
- [74fc7ae6](74fc7ae664) Fix command to show git log of current buffer file
- [43ddb109](43ddb10970) docs/faq: fix evil-snipe instructions
- [400fa083](400fa0836d) editor/evil: update disable instructions in readme
- [04eb44a6](04eb44a610) tools/pass: remove auth-source-pass recipe
- [ef84fce6](ef84fce68c) Define sh-mode for bats files
- [80db3110](80db3110a5) Made changes specified in pull request
- [6438172e](6438172e74) Fix [hlissner/doom-emacs⁠#5224](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5224): void-function error on +vc/* commands
- [8ad846e1](8ad846e15b) Fix [hlissner/doom-emacs⁠#5198](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5198): blacklist WSL_INTEROP in envvar file
- [ff2e75b1](ff2e75b15e) Remove checkboxes in issue forms
- [57026c4b](57026c4b70) Fix [hlissner/doom-emacs⁠#5169](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5169): x-underline-at-descent-line = nil
- [1a96f5b0](1a96f5b002) Fix [hlissner/doom-emacs⁠#5176](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5176): don't prompt on gt/gT (tab switch)
- [09226f90](09226f905d) Fix [hlissner/doom-emacs⁠#5155](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5155): interactive specs for tmux commands
- [5be988ac](5be988ac31) Bump :emacs dired
- [80c32eaa](80c32eaa89) Fix [hlissner/doom-emacs⁠#5176](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5176) (again): wrong interactive arg to gt/gT commands
- [36d186d1](36d186d1cd) Fix [hlissner/doom-emacs⁠#4665](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/4665): don't close annotation window on ESC
- [42ff3691](42ff369142) `SPC TAB N` binding ([hlissner/doom-emacs⁠#5173](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5173))
- [bafb3920](bafb392031) Fix fonts losing properties when resized
- [ba716d69](ba716d69f0) Fix [hlissner/doom-emacs⁠#5125](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5125): mix snippets with completion candidates
- [3aec4070](3aec407056) remove ripgrep dependency from ivy and helm readmes
- [29460d20](29460d205e) Bump :ui
- [6997adb6](6997adb654) Bump :tools
- [9df3072e](9df3072e94) Bump :checkers
- [34fae1c0](34fae1c01c) Remove remaining `Emacs27+` checks
- [721d5dd8](721d5dd853) Bump jupyter
- [3aeb0c06](3aeb0c060f) Fix [hlissner/doom-emacs⁠#5195](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5195): workspace is killed on magit commit
- [243cb43f](243cb43fec) Fix [hlissner/doom-emacs⁠#5187](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5187): syntax highlighting in ielm REPL
- [aeb809ed](aeb809ed8b) Bump :app
- [8da669ad](8da669adf0) Fix [hlissner/doom-emacs⁠#5253](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5253): error if message is called with nil arg
- [ab334559](ab334559f5) Bump :ui nav-flash
- [933dcc4d](933dcc4d19) Bump :completion
- [95f40c62](95f40c62ab) Add doom/bumpify-diff & doom/commit-bumps commands
- [d79cea2e](d79cea2e4c) Minor refactors, reformatting, & comment revision
- [f523830a](f523830a0e) Don't load core-cli on doom/reload
- [cbb0ce9f](cbb0ce9f85) Don't log hooks
- [ec956697](ec95669710) lang/javascript: remove coffee-mode
- [6be22624](6be2262423) Bump :lang
- [55c9cde6](55c9cde6ee) Bump :ui doom
- [69cfc602](69cfc60243) Bump :editor
- [084918f4](084918f4ea) editor/evil: correct evil-collection module name
- [e2ca32bd](e2ca32bd6b) Fix fill column indicator toggle on 'SPC t c'
- [9ffa5d6c](9ffa5d6c2f) org-roam-link-use-custom-faces = everywhere
- [5c741cb6](5c741cb65f) Fix [hlissner/doom-emacs⁠#5255](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5255): reload session after dashboard init
- [6672ee5c](6672ee5cf5) Simplify session persistence
- [aad7bc52](aad7bc521f) markdown-nested-imenu-heading-index = nil
- [8b95aa5d](8b95aa5d3e) lang/racket: add +lsp flag
- [edc527bb](edc527bb26) tools/lsp: add lsp-racket to lsp-client-packages
- [cdbd39ba](cdbd39ba26) emacs/undo: increase undo-outer-limit
- [8862f869](8862f8694c) Activate general-auto-unbind-keys post-startup
- [a760c679](a760c679a3) lang/beancount: remove redundant lsp config
- [4230ab9a](4230ab9ae6) docs/index: fix link to noel welsh's crash course
2021-07-27 14:56:27 +02:00
1914722d83 test/doom.d/init.el: Updating from hlissner/doom-emacs - 80c32eaa
### Changes for test/doom.d/init.el

```diff
--- 
+++ 
@@ -31,7 +31,6 @@
        doom-dashboard    ; a nifty splash screen for Emacs
        doom-quit         ; DOOM quit-message prompts when you quit Emacs
        ;;(emoji +unicode)  ; 🙂
-       ;;fill-column       ; a `fill-column' indicator
        hl-todo           ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW
        ;;hydra
        ;;indent-guides     ; highlighted indent columns
@@ -93,7 +92,7 @@
        (eval +overlay)     ; run code, run (also, repls)
        ;;gist              ; interacting with github gists
        lookup              ; navigate your code and its documentation
-       ;;lsp
+       ;;lsp               ; M-x vscode
        magit             ; a git porcelain for Emacs
        ;;make              ; run make tasks from Emacs
        ;;pass              ; password manager for nerds

```
2021-07-27 14:45:07 +02:00
e00bd95360 flake.lock: Updating 'org-mode (emacs-straight/org-mode)' - c3c89d56 -> fdb98a43
### Changes for org-mode

On branch: master
Commits: c3c89d569a...fdb98a436b

- [565361eb](565361eb69) org-keys: Do not bind <tab>, ever
- [221c8e29](221c8e298f) ob-tangle: Parse correctly tangle options
- [d1900adf](d1900adfbe) ol-bibtex: Added url and doi as optional entries for BiBTeX export
- [f76d4d10](f76d4d103f) ob-fortran: Use a defcustom for fortran compiler
- [ee652a47](ee652a47df) org-keys: Remove fancy RET keybindings
2021-07-27 14:44:54 +02:00
3e47763deb flake.lock: Updating 'nixpkgs (NixOS/nixpkgs)' - db6e0894 -> 7b4ff218
### Changes for nixpkgs

On branch: nixpkgs-unstable
Commits: db6e089456...7b4ff2184e

- [270c54df](270c54df09) Apply suggestions from code review
- [2aae258f](2aae258fd5) python3Packages.python-pidfile: init at 3.0.0 ([NixOS/nixpkgs⁠#129272](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/129272))
- [2a397ca3](2a397ca36a) lightwalletd: init at 0.4.7
- [60b1a047](60b1a047b7) linuxPackages.evdi: 2021-04-01 -> 2021-06-11, fix 5.13 build
- [7498e1f4](7498e1f46d) zeek: 4.0.2 -> 4.0.3
- [288f4cca](288f4cca2a) python3Packages.lmnotify: 0.0.4 -> 0.0.6
- [ad4d486e](ad4d486eb5) vimPlugins: update
- [25ff878a](25ff878acc) vimPlugins.indent-blankline-nvim-lua: make an alias to indent-blankline-nvim
- [f5f3e8c2](f5f3e8c203) vimPlugins.nvim-bufdel: init at 2021-05-21
- [6154b83a](6154b83a93) the-powder-toy: add mainProgram
- [8feca53b](8feca53ba9) tfswitch: init at 0.12.1119
- [c8f35051](c8f350513f) maintainers/maintainer-list: Use full name for psibi
- [8f312f63](8f312f630b) the-powder-toy: update license
- [53dd7f29](53dd7f29c7) sqlmap: 1.5.6 -> 1.5.7
- [97f2c8da](97f2c8dad1) xplr: 0.14.3 -> 0.14.4
- [e3342306](e3342306d8) python3Packages.youtube-search: use fetchPypi
- [750aebe3](750aebe3dc) pythonPackages.pydes: improve checkPhase
- [a42b017b](a42b017bdc) python3Packages.itunespy: does not depend on mypy
- [5f4bbbff](5f4bbbffa4) ytmdl: don't propagate ffmpeg
- [3f18b72c](3f18b72c1e) gitlab: 14.0.1 -> 14.0.2 ([NixOS/nixpkgs⁠#128963](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128963))
- [2468ca4a](2468ca4a85) python3Packges.celery: fix build
- [48cd9042](48cd90425d) zellij: 0.13.0 -> 0.14.0
- [e4e4ec67](e4e4ec67ce) vimPlugins.tabnine-vim: init at 2021-01-14
- [e1fb6783](e1fb67832b) python3Packages.nmigen: fix build
- [a61ffbaa](a61ffbaae6) tfsec: 0.40.7 -> 0.41.0
- [19c2dee0](19c2dee0b8) tfsec: migrate to ldflags
- [782def8d](782def8d5c) liquidctl: 1.6.1 -> 1.7.0
- [3e92c6be](3e92c6bec0) rauc: Provide systemd service file
- [fa9f6c56](fa9f6c56a8) makeself: disable tests for now, working around [NixOS/nixpkgs⁠#110149](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/110149)
- [f526256a](f526256a6f) busybox-sandbox-shell: use 64-bit numbers in `test` command
- [4cb042ec](4cb042ecb5) openmpt123: 0.5.9 -> 0.5.10
- [6f474174](6f4741747c) python3Packages.bytecode: 0.11.0 -> 0.12.0
- [ef6d8946](ef6d8946c7) getmail6: 6.17 -> 6.18
- [1d7fab34](1d7fab3457) osu-lazer: 2021.612.0 -> 2021.703.0
- [802f0213](802f021382) aws-c-cal: 0.4.5 -> 0.5.11
- [440304b5](440304b5ae) exploitdb: 2021-07-03 -> 2021-07-06
- [f06e35c0](f06e35c0e8) python3Packages.pytube: 10.8.5 -> 10.9.0
- [d1f05a0a](d1f05a0ae7) obs-studio-plugins: add `recurseIntoAttrs`
- [291b3ff5](291b3ff5af) lima: 0.4.0 -> 0.5.0
- [e200a599](e200a59995) canta-theme: 2020-05-17 -> 2021-07-06
- [ab2a731c](ab2a731cca) audacity: exclude from auto-updates, documenting decision
- [20d4e8bd](20d4e8bd39) psi-plus: bugfix for missing gstreamer dependencies
- [f879395b](f879395bd9) nixos/btrfs: handle new checksum types in initrd ([NixOS/nixpkgs⁠#126158](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126158))
- [f655a77e](f655a77ebf) kops: 1.20.1 -> 1.20.2 ([NixOS/nixpkgs⁠#128801](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128801))
- [a43f0e8a](a43f0e8af9) python3Packages.pyrituals: 0.0.4 -> 0.0.5
- [eea55853](eea558539e) gleam: 0.16.0 -> 0.16.1
- [f4e3ccdb](f4e3ccdbb2) fluent-bit: enable metrics & systemd support
- [f9539933](f95399337f) pulumi-bin: 3.5.1 -> 3.6.0
- [e009ef23](e009ef23ae) weechatScripts.highmon: init at 2.7
- [fc956a6d](fc956a6d2c) hugo: 0.84.4 -> 0.85.0
- [e0cda370](e0cda3708a) vault, vault-bin: fix build for darwin
- [873fd459](873fd459a3) flare: 1.11 -> 1.12rc1
- [69d84ca2](69d84ca216) jrsonnet: 0.4.0 -> 0.4.1
- [417563fa](417563fab9) nix-exec: remove
- [e4e7c8c2](e4e7c8c2c3) python3Packages.types-decorator: init at 0.1.5
- [6d20dc74](6d20dc7421) python3Packages.types-requests: init at 2.25.0
- [9282b2f5](9282b2f5a4) python3Packages.censys: 1.1.1 -> 2.0.3
- [77a2f388](77a2f38892) terraform-providers.cloudflare: update source, 2.7.0 -> 2.23.0
- [a9c819f4](a9c819f485) python3Packages.gssapi: 1.6.12 -> 1.6.14
- [4a356e3d](4a356e3dc6) tmuxPlugins.dracula: 1.0 -> 1.0.1 ([NixOS/nixpkgs⁠#128833](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128833))
- [e4d4b543](e4d4b54385) topgrade: 7.0.1 -> 7.1.0
- [a2c311fc](a2c311fc1d) electron-cash: fix build on darwin
- [ad8b9f8c](ad8b9f8c60) looking-glass-obs: init
- [06c4f46a](06c4f46a1a) python3Packages.python3-saml: Add patch to fix tests due to expired responses
- [2327acd1](2327acd1d0) ytmdl: patch bug
- [8eb54b8e](8eb54b8e09) bore: init at 0.3.3 ([NixOS/nixpkgs⁠#129295](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/129295))
- [77488646](7748864655) kvmfr: init at $looking-glass-client.version
- [c31f5ba0](c31f5ba083) pianoteq.{stage-trial,standard-trial}: 7.3.0 -> 7.4.1
- [e1bc891a](e1bc891aec) trash-cli: 0.21.6.10.1 -> 0.21.6.30
- [2e9dd407](2e9dd407b8) rr-unstable: 2020-10-04 -> 2021-07-06
- [b9ff6b1f](b9ff6b1f33) google-cloud-sdk: add aarch64-darwin
- [66aa4f2d](66aa4f2d4f) vimPlugins.doki-theme-vim: init at 2021-06-16
- [d8dc2f15](d8dc2f15ea) python3Packages.pep8-naming: fix tests
- [7d865365](7d86536529) rtw89: init at 2021-07-03 ([NixOS/nixpkgs⁠#129325](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/129325))
- [176b8cce](176b8cce23) fmt_8: init at 8.0.1 ([NixOS/nixpkgs⁠#129378](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/129378))
- [c4f09d80](c4f09d8006) oil: 0.8.11 -> 0.8.12
- [ae5e4425](ae5e4425a0) esbuild: 0.12.12 -> 0.12.14
- [6dfc26e6](6dfc26e6f6) gitea: 1.14.3 -> 1.14.4
- [655dc5b6](655dc5b67e) purescript: 0.14.2 -> 0.14.3
- [7bcc3f61](7bcc3f6190) postgresqlPackages.timescaledb: 2.3.0 -> 2.3.1
- [91887fed](91887fed8d) fish: 3.3.0 -> 3.3.1
- [358ebd19](358ebd190d) python3Packages.mcstatus: 6.2.0 -> 6.4.0
- [a2cdd3f4](a2cdd3f44a) roon-server: 1.8-795 -> 1.8-806
- [e55f56bb](e55f56bb9e) python3Packages.archinfo: 9.0.8021 -> 9.0.8761
- [dc25b0bc](dc25b0bc07) python3Packages.ailment: 9.0.8021 -> 9.0.8761
- [ed0d0e75](ed0d0e75a9) python3Packages.pyvex: 9.0.8021 -> 9.0.8761
- [c4b6ca48](c4b6ca4842) python3Packages.claripy: 9.0.8021 -> 9.0.8761
- [c566add8](c566add8cb) python3Packages.cle: 9.0.8021 -> 9.0.8761
- [7d43b982](7d43b982dd) python3Packages.angr: 9.0.8021 -> 9.0.8761
- [05f7b916](05f7b916ae) python3Packages.angrop: 9.0.8021 -> 9.0.8761
- [90f9b704](90f9b70423) pdns-recursor: 4.5.2 -> 4.5.4
- [64f20381](64f20381dc) xcolor: fix build
- [1cfc10e7](1cfc10e797) stevenblack-blocklist: 3.7.12 -> 3.7.13
- [50a10986](50a10986ec) mdbook: 0.4.9 -> 0.4.10
- [315e3cfc](315e3cfc9a) python3Packages.dependency-injector: 4.32.2 -> 4.34.0
- [e6fb1bb6](e6fb1bb60e) python3Packages.graphene: fix build
- [edabf180](edabf1806a) python3Packages.starlette: fix build
- [b57c87ae](b57c87ae7d) btcpayserver: 1.1.1 -> 1.1.2
- [cf2bee80](cf2bee80eb) nbxplorer: 2.1.51 -> 2.1.52
- [4c083492](4c0834929c) ocamlPackages.lwt-canceler: init at 0.2
- [1537d093](1537d09361) uutils-coreutils: fix darwin build (missing libiconv)
- [c7ddc7e0](c7ddc7e001) pinfo: 0.6.10 -> 0.6.13
- [8560dc85](8560dc8549) cypress: 7.5.0 -> 7.7.0
- [17d2bc7e](17d2bc7eeb) katago: Corrected git commit hash to be the tagged version, not the old tagged version
- [ce35e285](ce35e2852d) python3Packages.aqualogic: 2.6 -> 3.3
- [aea1a6c3](aea1a6c3cd) python3Packages.foolscap: 20.4.0 -> 21.7.0
- [652d4987](652d498786) python3Packages.hstspreload: 2021.6.28 -> 2021.7.5
- [a79e9212](a79e9212ec) python3Packages.maestral: 1.4.5 -> 1.4.6
- [d20231f7](d20231f714) maestral-gui: 1.4.5 -> 1.4.6
- [a7a7be8b](a7a7be8b94) k9s: 0.24.12 -> 0.24.13
- [fc745d50](fc745d501d) python3Packages.bitarray: 2.2.0 -> 2.2.1
- [8d113676](8d113676ca) just: 0.9.6 -> 0.9.8
- [8211a76d](8211a76d5b) humioctl: 0.28.4 -> 0.28.5
- [7b48f629](7b48f6295d) libcyaml: 1.1.0 -> 1.2.0
- [2b42d61c](2b42d61cef) codeql: 2.5.6 -> 2.5.7
- [f62e46d6](f62e46d629) goreleaser: 0.172.1 -> 0.173.1
- [97111e82](97111e82ca) python3Packages.pymetar: 1.2 -> 1.3
- [addf2a6e](addf2a6edf) python3Packages.httmock: 1.3.0 -> 1.4.0
- [ab706852](ab70685238) python3Packages.httmock: enable tests
- [b749ff4f](b749ff4f51) python3Packages.pg8000: 1.19.5 -> 1.20.0
- [1947733a](1947733a32) polkadot: 0.9.7 -> 0.9.8
- [82a2dece](82a2deced8) fcft: 2.4.1 -> 2.4.2
- [5ec78c03](5ec78c03ce) change various expressions to use pname and version
- [d8a87e89](d8a87e89e7) switch mercurial_4 and tortoisehg to pname
- [1422563f](1422563f54) hplip: add -n to gzip to improve reproducibility
- [83e44f67](83e44f67b1) dwm: support cross-compilation by setting proper CC
- [e93d6ab0](e93d6ab0ff) mdbook: remove unused input
- [aa359bdf](aa359bdfde) electrs: 0.8.9 -> 0.8.10
- [5ae0e015](5ae0e01511) fcft: support cross-compilation
2021-07-27 14:44:47 +02:00
987c4a3537 flake.lock: Updating 'emacs-overlay (nix-community/emacs-overlay)' - 2e084860 -> d32822d5
### Changes for emacs-overlay

On branch: master
Commits: 2e084860f8...d32822d549

- [76f480f7](76f480f780) Updated repos/elpa
- [68b98553](68b98553f7) Updated repos/emacs
- [7f1c0611](7f1c061166) Updated repos/melpa
- [e15ba6d7](e15ba6d7ab) Updated repos/emacs
- [5e93dbe9](5e93dbe9a2) Updated repos/melpa
- [26d509b6](26d509b6a9) Updated repos/elpa
- [a92dd252](a92dd2525b) Updated repos/emacs
- [a8eda531](a8eda53100) Updated repos/melpa
- [5ee8f211](5ee8f21122) Updated repos/melpa
- [a6903b78](a6903b78ab) Updated repos/emacs
- [7c0a9144](7c0a914426) Updated repos/melpa
- [e15aac82](e15aac8282) Updated repos/melpa
- [53539776](53539776f1) Updated repos/emacs
- [e8f8f9a7](e8f8f9a724) Updated repos/elpa
- [0e3a3860](0e3a38600e) Updated repos/melpa
- [7e565fea](7e565feabe) Updated repos/elpa
- [e915e288](e915e28820) Updated repos/emacs
- [84adce2b](84adce2b53) Updated repos/melpa
- [b02ea48c](b02ea48cb9) Updated repos/org
- [9fbb5e43](9fbb5e43ed) Updated repos/melpa
- [d8f8a972](d8f8a9725d) Updated repos/emacs
- [d072e0df](d072e0df85) Updated repos/emacs
- [7970912e](7970912ee7) Updated repos/melpa
- [833af0ff](833af0ff8f) Updated repos/melpa
- [25abd401](25abd401ba) Updated repos/emacs
- [53975298](5397529858) Updated repos/melpa
- [d041bd6b](d041bd6bcd) Updated repos/emacs
- [7b82140a](7b82140aed) Updated repos/melpa
- [c98b3a64](c98b3a644b) Updated repos/melpa
- [8d4495c0](8d4495c03b) Updated repos/elpa
- [3813dda9](3813dda98c) Updated repos/emacs
- [bfc8f6ed](bfc8f6edcb) Updated repos/melpa
- [926b9ab3](926b9ab372) Updated repos/emacs
- [0c6788be](0c6788be21) Updated repos/melpa
- [42a58666](42a586664a) Updated repos/emacs
- [96e3b61b](96e3b61bc9) Updated repos/melpa
- [636f5166](636f516660) Updated repos/elpa
- [b2cdedb3](b2cdedb357) Updated repos/emacs
- [d32822d5](d32822d549) Updated repos/melpa
2021-07-27 14:44:39 +02:00
839cf8c757 flake.lock: Updating 'doom-snippets (hlissner/doom-snippets)' - bc613f44 -> 5c0eb5bd
### Changes for doom-snippets

On branch: master
Commits: bc613f448e...5c0eb5bd70

- [a9787287](a97872879d) Add fennel-mode snippets
- [5c0eb5bd](5c0eb5bd70) Update dates
2021-07-27 14:44:29 +02:00
550ca07679 flake.lock: Updating 'doom-emacs (hlissner/doom-emacs)' - 27316850 -> 80c32eaa
### Changes for doom-emacs

On branch: develop
Commits: 2731685095...80c32eaa89

- [9478a6a9](9478a6a901) lang/latex +fold: fix error when yas-snippet-{beg,end} are nil
- [db83e94b](db83e94bad) Remove dependence on company for fish and bash completion
- [5c54ae13](5c54ae1329) lang/json/doctor: only check for jq if ivy is on
- [cbfd2fad](cbfd2fadc0) [:input layout bepo] Remove "W" convenience remap
- [012b759e](012b759e98) Fix [hlissner/doom-emacs⁠#5128](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5128): No format-on-save by lsp-formatters
- [03385155](033851556a) lang/lua: document fennel support in readme
- [3eac1f4e](3eac1f4e8a) removed unused use in "file-template rust main"
- [8f89e58c](8f89e58c3a) remove duplicate '+' from kotlin +lsp
- [7f878700](7f87870099) Bump flycheck-kotlin
- [b3dfd475](b3dfd4758d) don't explicitly set `projectile-completion-system`
- [25468835](2546883543) The dart config was setting the 'flutter-run-or-hot-reload' keybind with init, so if you changed the localleader in your settings, it would stay as SPC m rather than what localleader was mapped to
- [bb677cf7](bb677cf7a5) Prevent extra variable from being passed in macro.
- [c091b27e](c091b27e4a) Made changes specified in pull request
- [8c3a8352](8c3a83526b) Filter directories when purging straight repos
- [ff2d5679](ff2d56794e) Don't activate sly-mode in lisp-mode derived modes
- [044a1a5f](044a1a5f2b) Drop Emacs 26.x support
- [38bc1ab8](38bc1ab81a) Bump :tools pdf
- [9198b038](9198b03807) Bump :core
- [19edcb93](19edcb9314) Change doom-version to 3.0.0-alpha
- [3ccc12c1](3ccc12c16b) Add init.example.el one-liner for :tools lsp
- [6a23c614](6a23c6142b) tools/direnv: refactor
- [2d2246d7](2d2246d7ca) term/eshell: alias ff = find-file-other-window
- [7925759b](7925759b8e) Set the lsp-ui-sideline-actions-icon to the default
- [74fc7ae6](74fc7ae664) Fix command to show git log of current buffer file
- [43ddb109](43ddb10970) docs/faq: fix evil-snipe instructions
- [400fa083](400fa0836d) editor/evil: update disable instructions in readme
- [04eb44a6](04eb44a610) tools/pass: remove auth-source-pass recipe
- [ef84fce6](ef84fce68c) Define sh-mode for bats files
- [80db3110](80db3110a5) Made changes specified in pull request
- [6438172e](6438172e74) Fix [hlissner/doom-emacs⁠#5224](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5224): void-function error on +vc/* commands
- [8ad846e1](8ad846e15b) Fix [hlissner/doom-emacs⁠#5198](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5198): blacklist WSL_INTEROP in envvar file
- [ff2e75b1](ff2e75b15e) Remove checkboxes in issue forms
- [57026c4b](57026c4b70) Fix [hlissner/doom-emacs⁠#5169](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5169): x-underline-at-descent-line = nil
- [1a96f5b0](1a96f5b002) Fix [hlissner/doom-emacs⁠#5176](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5176): don't prompt on gt/gT (tab switch)
- [09226f90](09226f905d) Fix [hlissner/doom-emacs⁠#5155](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5155): interactive specs for tmux commands
- [5be988ac](5be988ac31) Bump :emacs dired
- [80c32eaa](80c32eaa89) Fix [hlissner/doom-emacs⁠#5176](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5176) (again): wrong interactive arg to gt/gT commands
2021-07-27 14:44:08 +02:00
f09e905e21 flake.lock: Updating 'org-mode (emacs-straight/org-mode)' - 5c07b279 -> c3c89d56
### Changes for org-mode

On branch: master
Commits: 5c07b279e0...c3c89d569a

- [69a5591a](69a5591ad3) Build process: Do not attempt to clean =contrib/=
- [aa0fa8c7](aa0fa8c753) lisp/ox-publish.el: Speedup when looking for file changes
- [e2550506](e2550506eb) src: Use `replace-buffer-contents' only for emacs >= 27
- [8e3e2f66](8e3e2f667f) clock: Prevent "before first headline" error on clock-out note
- [afb948e5](afb948e578) Backport commit f1f351def from Emacs
- [bb572a3e](bb572a3e8c) Backport commit 19f2f2699 from Emacs
- [81c4befe](81c4befe62) ox-html: Resolve W3C warning, improve a11y
- [7666d6bb](7666d6bb99) org-keys: improve the call for speed key "g"
- [80374642](80374642e2) agenda: Fix timestamp agenda setting global agenda name
2021-07-09 00:05:38 +02:00
7971b8ea06 flake.lock: Updating 'nixpkgs (NixOS/nixpkgs)' - c6a049a3 -> db6e0894
### Changes for nixpkgs

On branch: nixpkgs-unstable
Commits: c6a049a3d3...db6e089456

- [57bb3d7e](57bb3d7e7a) home-assistant: update component-packages.nix
- [1d473cf5](1d473cf593) home-assistant: test totalconnect component
- [8e4c6b84](8e4c6b8459) nushell: 0.32.0 -> 0.33.0
- [4502e7e4](4502e7e46f) spotify-tui: 0.23.0 -> 0.24.0
- [9ecc9078](9ecc9078cd) ombi: 4.0.1345 -> 4.0.1430
- [90925dbf](90925dbf68) linuxPackages.veikk-linux-driver: mark broken for kernels older than 4.19
- [988677d7](988677d741) python3Packages.upcloud-api: init at 2.0.0
- [e33db522](e33db52206) home-assistant: update component-packages.nix
- [59245deb](59245deb14) home-assistant: test upcloud component
- [a4459504](a4459504c8) python3Packages.aiomodernforms: init at 0.1.7
- [3f4d568c](3f4d568ccf) python3Packages.synologydsm-api: init at 1.0.2
- [3a9eeac3](3a9eeac3c1) home-assistant: update component-packages.nix
- [654ca524](654ca52421) home-assistant: test synology_dsm component
- [cb6b93e2](cb6b93e299) python3Packages.python-juicenet: init at 1.0.2
- [968e0987](968e0987d7) home-assistant: update component-packages.nix
- [c82cb95a](c82cb95a02) home-assistant: test juicenet component
- [177164ba](177164baa7) jitsi-meet-electron: 2.8.6 -> 2.8.7 ([NixOS/nixpkgs⁠#128259](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128259))
- [f45ccc53](f45ccc532b) fastd: 21 -> 22 ([NixOS/nixpkgs⁠#128301](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128301))
- [5ea390f6](5ea390f6c0) fancy-motd: unstable-2021-05-26 -> unstable-2021-06-27
- [a608decd](a608decddc) python3Packages.forecast-solar: init at 1.3.1
- [a9d36bc6](a9d36bc6fe) libsForQt5.mauikit: only supports Qt>=5.15
- [dc87cf52](dc87cf5298) tdesktop: 2.8.0 -> 2.8.1
- [bbd9f938](bbd9f938d4) tdesktop: Finalize the update script
- [4a9f048d](4a9f048d89) mangohud: 0.6.3 → 0.6.4
- [34131ae7](34131ae728) stevenblack-blocklist: 3.7.9 -> 3.7.10
- [ada25b1a](ada25b1a98) bear: 3.0.12 -> 3.0.13
- [e1dc1d6c](e1dc1d6c33) python3Packages.aiomodernforms: 0.1.7 -> 0.1.8
- [3b9daa68](3b9daa6828) python3Packages.pyrituals: 0.0.3 -> 0.0.4
- [df7bc169](df7bc16974) ceph-csi: init at 3.3.1 ([NixOS/nixpkgs⁠#123472](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/123472))
- [15fe4be1](15fe4be12b) pycritty: init at 0.3.5 ([NixOS/nixpkgs⁠#128166](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128166))
- [d67d3710](d67d37104a) i3status-rust: 0.20.1 -> 0.20.2
- [efe2e4e8](efe2e4e8c2) pan: fix build and format
- [fb81b076](fb81b07672) python3Packages.pypdf3: init at 1.0.5
- [62bdc511](62bdc5114a) calibre-web: 0.6.11 -> 0.6.12
- [a06aeca3](a06aeca3bb) libint: init at 2.6.0 ([NixOS/nixpkgs⁠#128083](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128083))
- [edba9765](edba976506) wpa_supplicant: allow disabling pcsclite dependency ([NixOS/nixpkgs⁠#128182](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128182))
- [e1d6051d](e1d6051d81) imagej: reformat expression
- [25d22238](25d2223859) ytmdl: 2021.05.26 -> 2021.06.26 ([NixOS/nixpkgs⁠#128256](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128256))
- [34eb39f1](34eb39f141) obs-move-transition: 2.3.0 -> 2.4.3 ([NixOS/nixpkgs⁠#128270](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128270))
- [ecb5cd97](ecb5cd972f) unison: patch 2.51.3
- [07500621](0750062126) imagej: Add desktop item and icon
- [796ae067](796ae067c4) imagej: 150 -> 153
- [9216c9f1](9216c9f195) gupnp: 1.2.4 -> 1.2.7
- [6b0a1dfd](6b0a1dfd4c) epson-escpr2: 1.1.25 -> 1.1.34
- [664d835d](664d835d7e) ginkgo: 1.16.3 -> 1.16.4
- [29b2c507](29b2c507b8) goreleaser: 0.168.0 -> 0.172.0
- [d4ae1277](d4ae12779a) gpg-tui: 0.6.0 -> 0.6.1
- [b16dbf99](b16dbf99b6) hyprspace: 0.1.4 -> 0.1.5
- [dcbc0954](dcbc095441) home-assistant: requires setuptools
- [572c9219](572c9219ad) wio:0.0.0+unstable=2021-06-01 -> 0.0.0+unstable=2021-06-27
- [74281b9f](74281b9faa) globalprotect-vpn: add missing 'mkIf cfg.enable'
- [31487e43](31487e434b) bochs: refactor and prepare it for next release
- [110a85fd](110a85fd36) distrobuilder: 2019_10_07 -> 1.2
- [83c72771](83c7277190) python3Packages.lmnotify: init at 0.0.4
- [23e3724a](23e3724a11) home-assistant: update component-packages.nix
- [875e4abc](875e4abc7d) vsce/asciidoctor.asciidoctor-vscode: init at 2.8.9
- [e13f126c](e13f126c4b) python3Packages.geopandas: 0.8.1 → 0.9.0
- [5b2824b9](5b2824b9e2) matomo: 4.2.1 -> 4.3.1
- [3f50543e](3f50543e34) neovide: enable wayland usage without xwayland
- [5550614a](5550614aba) python3Packages.pytibber: 0.17.1 -> 0.18.0
- [4f3bc6aa](4f3bc6aa7f) ocamlPackages.utop: 2.7.0 → 2.8.0
- [5ca20c29](5ca20c29fa) wireless-regdb: 2020.04.29 -> 2021.04.21
- [e8905779](e89057790a) nix-direnv: 1.2.6 -> 1.4.0
- [9fdc5e10](9fdc5e10ee) smlnj: fix x86_64-darwin build
- [4a4fc6c9](4a4fc6c9c9) smlnjBootstrap: move dependents over to regular smlnj
- [1c450db3](1c450db3cc) yq: fix build
- [2b41f19f](2b41f19f79) volk: 2.4.1 -> 2.5.0
- [124bbaf3](124bbaf311) lsp-plugins: 1.1.26 -> 1.1.30 ([NixOS/nixpkgs⁠#128330](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128330))
- [c15d6f57](c15d6f570c) python3Packages.lmnotify: update description
- [5698f711](5698f71177) python3Packages.pysyncthru: init at 0.7.3
- [45c5ead5](45c5ead53c) home-assistant: update component-packages.nix
- [49d03473](49d0347312) home-assistant: test syncthru component
- [a3d04338](a3d043387f) nixos/tests/home-assistant: don't test package
- [4502f74f](4502f74f29) chuck: 1.4.0.1 -> 1.4.1.0
- [ee8bdde2](ee8bdde2ce) emacs.pkgs.ebuild-mode: init at 1.52
- [78df2079](78df2079fc) python3Packages.starline: init at 0.1.5
- [831807d6](831807d65a) home-assistant: update component-packages.nix
- [0e6f2e22](0e6f2e2201) home-assistant: test starline component
- [568ca861](568ca86168) dpdk: make myself maintainer
- [24da5909](24da590943) python3Packages.srpenergy: init at 1.3.2
- [12fd96ae](12fd96ae06) home-assistant: update component-packages.nix
- [6b21275e](6b21275e58) home-assistant: test srp_energy component
- [25eb4871](25eb4871de) polkadot: 0.9.6 -> 0.9.7
- [254a1f32](254a1f32a6) libsForQt5.kimageformats: fix build after libavif update
- [7286fc29](7286fc29c5) qutebrowser: 2.2.3 -> 2.3.0
- [98336c22](98336c223b) pkgs-lib: allow paths in TOML, YAML and JSON
- [3a30f526](3a30f52676) nixos/nginx: fix typo
- [aee94b09](aee94b0981) scream: 3.6 -> 3.7
- [3bccd612](3bccd612d3) openring: unstable-2021-04-03 -> unstable-2021-06-28
- [6edeec2b](6edeec2b73) python3Packages.trezor: patch for updated dep
- [3864c36b](3864c36b79) tdesktop: 2.8.1 -> 2.8.3
- [367a53a8](367a53a82b) linux_5_13: init at 5.13
- [2ced8f24](2ced8f2455) checkstyle: 8.43 -> 8.44
- [a8c0b777](a8c0b77793) volk: remove unused argument
- [6fe65621](6fe6562177) go-minimock: 3.0.8 -> 3.0.9
- [b3beccf6](b3beccf679) kodiPackages.inputstream-adaptive: 2.6.16 -> 2.6.17
- [3b77eb17](3b77eb1734) fluent-bit: 1.7.6 -> 1.7.9
- [87f2fe53](87f2fe5366) fuzzel: 1.5.4 -> 1.6.0
- [886c38ab](886c38abb8) gophernotes: 0.7.2 -> 0.7.3
- [f1413d34](f1413d34e9) cargo-flash: 0.10.1 -> 0.11.0
- [a54553ef](a54553eff6) volk: fix darwin build
- [d71d7ece](d71d7ecef1) tinc_pre: 1.1pre17 -> 1.1pre18
- [2b0ad115](2b0ad115b2) esbuild: 0.12.9 -> 0.12.11
- [7f07b70d](7f07b70d08) Revert "writers: Allow string paths"
- [b9317c2a](b9317c2afe) python3Packages.hstspreload: 2021.6.21 -> 2021.6.28
- [56d11e14](56d11e1467) gupnp: revert [NixOS/nixpkgs⁠#128448](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128448) ([NixOS/nixpkgs⁠#128543](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128543))
- [b3839774](b383977471) python3Packages.python-songpal: init at 0.13
- [1c4bcfc5](1c4bcfc593) home-assistant: update component-packages.nix
- [7a8ca2b1](7a8ca2b1f5) home-assistant: test songpal component
- [5dcfdb5b](5dcfdb5bd6) restique: init at unstable-2021-05-03
- [775e849b](775e849b0c) gpg-tui: 0.6.1 -> 0.6.2
- [0dccbe27](0dccbe2729) nixos/tests/kernel-generic: fix evaluation
- [0432fe10](0432fe1034) hugo: 0.84.1 -> 0.84.2
- [447e75a2](447e75a24c) imgproxy: 2.16.4 -> 2.16.5
- [40db7836](40db7836fe) k9s: 0.24.10 -> 0.24.11
- [6b06737e](6b06737e5a) katago: 1.8.2 -> 1.9.0
- [13034ba7](13034ba77a) mimalloc: 2.0.0 -> 2.0.2
- [58e6fa61](58e6fa615a) mimalloc: make use of MI_INSTALL_TOPLEVEL
- [89400633](89400633b9) mimalloc: revert doCheck enable
- [2820afa6](2820afa6f6) gxemul: 0.6.2 -> 0.7.0
- [16fbc036](16fbc036ef) snort: 2.9.16.1 -> 2.9.18 ([NixOS/nixpkgs⁠#128580](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128580))
- [55dcd998](55dcd99859) root: use pure CoreSymbolication on Darwin
- [0616d2a4](0616d2a463) blueberry: 1.4.3 -> 1.4.4
- [f717dcaf](f717dcafbf) avocode: 4.14.3 -> 4.15.0
- [c805959f](c805959fbc) texlive: drop unused "fetch&unpack" derivations ([NixOS/nixpkgs⁠#126982](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126982))
- [8b7e73dd](8b7e73ddb0) cbonsai: 1.2.0 -> 1.2.1
- [233e6c45](233e6c455b) cri-o-unwrapped: 1.21.0 -> 1.21.1
- [8ad7f248](8ad7f2487e) ocamlPackages.ppxlib: 0.22.0 → 0.22.2
- [a7260e81](a7260e81fc) gnuradio: 3.9.1.0 -> 3.9.2.0
- [c8d0af7c](c8d0af7cff) gnuradio3_8: 3.8.3.0 -> 3.8.3.1
- [64f45f1c](64f45f1cf6) gpg-tui: fix build on Darwin
- [be766447](be76644735) coqPackages.semantics: init
- [cca08690](cca0869015) openmpi: re-enable fortran on aarch64-darwin
- [fcdcb819](fcdcb81936) chromiumDev: Fix build errors due to the older system FFmpeg
- [e4552975](e4552975fe) intel-gmmlib: 21.1.3 -> 21.2.1
- [96f9da08](96f9da0808) python3Packages.sonarr: init at 0.3.0
- [94d8b2dc](94d8b2dcb2) home-assistant: update component-packages.nix
- [4bb462b8](4bb462b8f8) home-assistant: test sonarr component
- [67641dc3](67641dc31a) exfatprogs: init at 1.1.2
- [a0fbb879](a0fbb879d8) macchina: 0.8.21 -> 0.9.2
- [db1ee4e1](db1ee4e1f8) python3Packages.smarthab: init at 0.21
- [b1d184de](b1d184deeb) home-assistant: update component-packages.nix
- [f5d90899](f5d90899d4) home-assistant: test smarthab component
- [99d3252b](99d3252b18) ocamlPackages.stringext: 1.4.0 -> 1.6.0 ([NixOS/nixpkgs⁠#128598](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/128598))
2021-07-09 00:05:28 +02:00
4ba8a4226a flake.lock: Updating 'emacs-overlay (nix-community/emacs-overlay)' - f89641db -> 2e084860
### Changes for emacs-overlay

On branch: master
Commits: f89641db53...2e084860f8

- [99f748db](99f748dbe8) Updated repos/emacs
- [884b14de](884b14de30) Updated repos/melpa
- [43dd22cd](43dd22cd2b) Updated repos/emacs
- [1d2d1b02](1d2d1b022e) Updated repos/emacs
- [dc043836](dc04383664) Updated repos/melpa
- [27a0a708](27a0a708f2) Updated repos/emacs
- [c340032f](c340032fb3) Updated repos/emacs
- [67fe74d6](67fe74d6e7) Updated repos/melpa
- [1c7f26fa](1c7f26fa39) Updated repos/emacs
- [d756e841](d756e841ef) Updated repos/melpa
- [cabdf309](cabdf309d7) Updated repos/emacs
- [2ac9c8cd](2ac9c8cd3f) Updated repos/melpa
- [b817cc46](b817cc4632) Updated repos/elpa
- [f2ec87b0](f2ec87b0af) Updated repos/melpa
- [4b57bf34](4b57bf3422) Updated repos/emacs
- [7a3ebbd9](7a3ebbd988) Updated repos/melpa
- [b24988a9](b24988a9d1) Updated repos/org
- [b49a405c](b49a405ce9) Updated repos/emacs
- [6cd4feac](6cd4feac20) Updated repos/melpa
- [6605fb14](6605fb14e8) Updated repos/emacs
- [ab500b19](ab500b1977) Updated repos/melpa
- [a4a04307](a4a04307e5) Updated repos/elpa
- [c52eb2d6](c52eb2d619) Updated repos/melpa
- [630eee89](630eee895e) Updated repos/emacs
- [69e552cb](69e552cb93) Updated repos/melpa
- [5d13463f](5d13463f83) Updated repos/elpa
- [aae3e273](aae3e2732a) Updated repos/emacs
- [26b4b95c](26b4b95c25) Updated repos/melpa
- [cc07c6fe](cc07c6feb7) Updated repos/emacs
- [5c598ed5](5c598ed5f4) Updated repos/melpa
- [857c7359](857c735927) Updated repos/emacs
- [113be4e3](113be4e3a8) Updated repos/melpa
- [b7500a00](b7500a0083) Updated repos/emacs
- [44a5f3ba](44a5f3ba38) Updated repos/melpa
- [d395e488](d395e48860) Updated repos/elpa
- [5afd2601](5afd26013a) Updated repos/emacs
- [2e084860](2e084860f8) Updated repos/melpa
2021-07-09 00:05:18 +02:00
3893c50877 flake.lock: Updating 'doom-emacs (hlissner/doom-emacs)' - 617ab847 -> 27316850
### Changes for doom-emacs

On branch: develop
Commits: 617ab847c6...2731685095

- [c3ec594a](c3ec594a8a) app/irc: Swap examples to cite libera.chat
- [7d5f387b](7d5f387bdc) Added Flycheck documentation
- [ea6dfc7b](ea6dfc7b98) Fixed date issues
- [b20736c9](b20736c9b7) Add haskell gitignore template
- [70967a17](70967a1702) Add evil-keybindings for various sharper commands
- [72c3a791](72c3a79132) Ensure *-local-vars-hook runs on hack-local-variables-hook
- [3759de8b](3759de8b00) Remove doom update and replace with doom sync -u
- [9da4ac05](9da4ac05ad) Fix [hlissner/doom-emacs⁠#4894](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/4894): +lookup/references not following references
- [19203a91](19203a91a3) Unset :weight, :slant, :width on font faces
- [ffeca3c7](ffeca3c7fd) Bump :core
- [f408016c](f408016c6f) Rewrite how Doom scales font-size
- [46c89d35](46c89d350e) cli/packages: fix commit between pins counting
- [f9a1d809](f9a1d80936) cli/packages: fix update output on unpinned packages
- [26aeb72e](26aeb72e63) org-clock-out-remove-zero-time-clocks = t
- [027dec3b](027dec3b5f) editor/format: use unabbreviated commit
- [883a109a](883a109a7a) Fix "Couldn't find project root" error on +ivy/compile
- [99fbdb10](99fbdb1092) lang/sh: make shfmt indent-style aware
- [68b422c7](68b422c786) editor/format: redesign
- [2d76bdce](2d76bdceb8) Bump straight
- [78dde6ef](78dde6efdd) Fix [hlissner/doom-emacs⁠#5133](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5133): don't kill LSP after reformatting
- [9fb96f9e](9fb96f9eeb) Fix 'setting-constant enable-multibyte-characters' error
- [63cc08be](63cc08be98) lang/java: Add file templates
- [60b59532](60b595321e) Lazy-load yasnippet harder for faster first-file load time
- [a2871e68](a2871e68ed) Warn about :size in doom-unicode-font docstring
- [ea80826f](ea80826fd2) gt/gT = add goto Nth tab behavior
- [47bce885](47bce8856d) Fix gr in compilation buffers (for evil users)
- [c92f4867](c92f486750) Don't reload envvar file on doom/reload
- [50e71ce7](50e71ce765) Revert 54067455e: fix ligatures
- [751569f5](751569f545) Fix +tabs:previous-or-goto typo
- [b2376a84](b2376a847f) Fix "Unrecognized switch -E" from doom/reload
- [87abb63d](87abb63dd2) Use org-tree-slide-play-hook to hide blocks
- [3ebda88a](3ebda88aec) :lang web: Recognize .ejs files as web-mode
- [c34ed0d1](c34ed0d194) Fix [hlissner/doom-emacs⁠#5146](http://r.duckduckgo.com/l/?uddg=https://github.com/hlissner/doom-emacs/issues/5146): errors when adjusting font size live
- [cb574f5d](cb574f5d42) cli: show Emacs version at the start of output
- [335b6f9a](335b6f9abb) Bump :ui doom
- [9bbc0699](9bbc0699ae) app/calendar: remove non-existent autoload
2021-06-29 23:17:44 +02:00
f96bcceeca flake.lock: Updating 'org-mode (emacs-straight/org-mode)' - f70e3625 -> 5c07b279
### Changes for org-mode

On branch: master
Commits: f70e36252a...5c07b279e0

- [f092cb30](f092cb30d9) ox-latex: Allow reference command to be customised
- [9aa304f9](9aa304f957) ox-latex: Fix defcustom keywords.
- [aba1f206](aba1f20661) agenda: Fix org-duration-to-minutes error (take 3)
- [15badb32](15badb32b7) agenda: Fix org-duration-to-minutes error (take 4)
- [c0935654](c09356548f) agenda: Fix `org-get-time-of-day' on empty string
- [81011df7](81011df71d) lisp/ox-koma-letter.el: Move from the old contrib/ directory
- [5c07b279](5c07b279e0) etc/ORG-NEWS: Document the addition of ox-koma-letter.el
2021-06-29 23:17:35 +02:00
37b154aab5 flake.lock: Updating 'nixpkgs (NixOS/nixpkgs)' - 7e9e1b63 -> c6a049a3
### Changes for nixpkgs

On branch: nixpkgs-unstable
Commits: 7e9e1b6351...c6a049a3d3

- [7e3d8fc6](7e3d8fc66b) byacc: 20210520 -> 20210619
- [afb035ed](afb035ed9f) gallery-dl: 1.17.5 -> 1.18.0
- [24b29d11](24b29d114e) avocode: 4.14.1 -> 4.14.3
- [f283f941](f283f9411b) liquibase: 4.3.5 -> 4.4.0
- [5abe2cd1](5abe2cd1ac) analog: 6.0.16 -> 6.0.17
- [71417e7e](71417e7ebd) bacon: 1.1.5 -> 1.1.6
- [afb2e12e](afb2e12ee9) amidst: use jre instead of jre8
- [f64fb8bd](f64fb8bd31) jmol: 14.31.39 -> 14.31.41
- [312fbe84](312fbe8458) cmark: 0.29.0 -> 0.30.0; dynamically link; cleanup
- [548cc15a](548cc15a89) dnsproxy: 0.37.6 -> 0.37.7
- [0ff9967d](0ff9967dac) python3Packages.pysbd: 0.3.3 -> 0.3.4
- [06d92ba1](06d92ba195) esphome: fix permissions on src file before modifying them
- [63b199c1](63b199c193) grpc: 1.38.0 -> 1.38.1
- [7817a547](7817a547a3) sudo-font: 0.53.1 -> 0.55.1
- [08a9ffd3](08a9ffd38c) python38Packages.grpcio-tools: 1.38.0 -> 1.38.1
- [c50bd802](c50bd80253) nodejs-16_x: 16.3.0 -> 16.4.0
- [0752eabb](0752eabbf4) go-mockery: 2.8.0 -> 2.9.0
- [7955ea96](7955ea9628) vimPlugins.formatter-nvim: init at 2021-06-23
- [d96ccfaf](d96ccfaf16) ipfs: 0.8.0 → 0.9.0
- [bbe12794](bbe1279459) exploitdb: 2021-06-19 -> 2021-06-23
- [4b0ca5e0](4b0ca5e0cd) fuse-overlayfs: 1.5.0 -> 1.6
- [fac2f636](fac2f63654) Apply suggestions from code review
- [0a1695b0](0a1695b024) ceph: use packageOverrides
- [0bce48d5](0bce48d5b7) pythonPackages.scipy_1_3: drop
- [b128806d](b128806d99) pythonPackages.dns: move alias to python-aliases.nix
- [cf4e702b](cf4e702b2c) cq-editor: use default version of spyder
- [388ec140](388ec14073) pythonPackages.spyder_3: drop
- [1dc70c3b](1dc70c3b9e) pythonPackages.spyder-kernels_0_5: drop
- [c4a91c75](c4a91c75c5) python3Packages.netdisco: 2.8.3 -> 2.9.0
- [3b6dfbae](3b6dfbae81) maintainer: update babariviere
- [471e6391](471e63915f) libzip: 1.7.3 -> 1.8.0
- [494ba50f](494ba50fc3) updog: init at 1.4
- [a6bb32ae](a6bb32aecc) graalvm-ce: fix NativePRNG errors on darwin
- [271c827b](271c827b0e) clamav: 0.103.2 -> 0.103.3
- [039b2dec](039b2deca5) orthorobot: remove phases overwrite
- [a5519a21](a5519a216a) cargo-release: 0.14.0 -> 0.15.0
- [b7ecc3db](b7ecc3db11) eprover: 2.5 -> 2.6
- [6d7451d7](6d7451d728) esphome: 1.19.2 -> 1.19.3
- [3a2215d1](3a2215d1d5) du-dust: 0.5.4 -> 0.6.0
- [951939e4](951939e48d) srt: 1.4.2 -> 1.4.3
- [46113713](46113713d4) rich: make `ipywidgets` dependency optional ([NixOS/nixpkgs⁠#121243](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/121243))
- [88b53156](88b531566b) python3Packages.extractcode-libarchive: fix eval
- [2beb0f7b](2beb0f7b06) rust-analyzer: 2021-06-07 -> 2021-06-21 and fix the extension
- [f60eff54](f60eff5485) consul: 1.9.7 -> 1.10.0
- [ca8b252d](ca8b252d19) taskspooler: init at 1.0
- [a05435ac](a05435acd1) maintainers: add bertof
- [dea84b1e](dea84b1e10) srt: Switch website to Github.
- [07dcccba](07dcccbaed) python3Packages.coqpit: 0.0.9 -> 0.0.10
- [aecc760c](aecc760c05) joystickwake: init at 0.2.4
- [cf496ea5](cf496ea5cf) vimPlugins.vim-alias: init at 2021-06-23
- [c265f50e](c265f50e2f) knot-dns: verbose output in case some test fails
- [aac0961f](aac0961f4d) python3Packages.pyaehw4a1: init at 0.3.9
- [5b220bf3](5b220bf3f3) home-assistant: update component-packages.nix
- [82f57c58](82f57c5828) home-assistant: test hisense_aehw4a1 component
- [48f16f28](48f16f281f) add tonelib-gfx ([NixOS/nixpkgs⁠#127712](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/127712))
- [4b0789d7](4b0789d7c5) 4ti2: init at 1.6.9
- [6f67d173](6f67d1734a) pythonPackages.python-louvain: init at 0.15 ([NixOS/nixpkgs⁠#127818](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/127818))
- [e234811b](e234811bb0) clojure-lsp: fix compilation on darwin
- [4400e4d0](4400e4d06c) zprint: fix compilation on darwin
- [b19285d9](b19285d9f6) clojure-lsp: update maintainers list
- [6fb9ef94](6fb9ef9409) probe-run: 0.2.3 -> 0.2.4
- [8cdec037](8cdec03785) python3Packages.hlk-sw16: init at 0.0.9
- [2cb5693a](2cb5693ac9) home-assistant: update component-packages.nix
- [18afd8c4](18afd8c4c6) home-assistant: test hlk_sw16 component
- [fb746462](fb7464627f) marwaita: 9.2.2 -> 9.5
- [6443cb70](6443cb7036) python3Packages.somecomfort: init at 0.5.2
- [65d101a0](65d101a0b0) home-assistant: update component-packages.nix
- [253562b6](253562b6bd) home-assistant: test honeywell component
- [feb370eb](feb370ebb1) slack: fix missing libGLESv2.so.2
- [dfcfc915](dfcfc91515) python3Packages.huawei-lte-api: init at 1.4.18
- [29589039](2958903932) home-assistant: update component-packages.nix
- [20560b05](20560b05d8) home-assistant: test huawei_lte component
- [db2ce99e](db2ce99e1c) pythonPackages.python-louvain: reenable tests
- [eb8a694d](eb8a694d92) nixos/sway: Drop rxvt-unicode from the extraPackages default
- [b2ec1ffa](b2ec1ffa00) nodePackages.netlify-cli: update esbuild
- [8df3adc8](8df3adc8f8) nanovna-saver: use packageOverrides
- [f133bec3](f133bec362) pythonPackages.scipy_1_4: drop
- [7936eaa3](7936eaa3a6) disfetch: 1.22 -> 1.24
- [cc2924ee](cc2924ee9a) nanovna-saver: don't double-wrap
- [16bedb4e](16bedb4e99) inter: 3.18 -> 3.19
- [8f309115](8f309115de) docker-slim: 1.36.0 -> 1.36.1
- [18c2cde4](18c2cde4d4) git-quick-stats: 2.2.0 -> 2.3.0
- [ab9c4eae](ab9c4eaecd) jruby: 9.2.18.0 -> 9.2.19.0
- [540c23fc](540c23fc4c) kanboard: 1.2.19 -> 1.2.20
- [fd1d79c9](fd1d79c9ea) helmfile: 0.139.8 -> 0.139.9
- [bf95eaf6](bf95eaf623) k9s: 0.24.9 -> 0.24.10
- [fa346247](fa34624701) gh-ost: 1.1.1 -> 1.1.2
- [fe968242](fe9682427b) go-rice: 1.0.0 -> 1.0.2
- [9a76039f](9a76039f9e) python3Packages.huisbaasje-client: init at 0.1.0
- [4b804786](4b80478604) home-assistant: update component-packages.nix
- [6a50f94d](6a50f94d23) home-assistant: test huisbaasje component
- [c2e3b1de](c2e3b1de89) libxmp: 4.4.1 -> 4.5.0
- [66b43bb1](66b43bb134) bctoolbox: 4.5.15 -> 4.5.20
- [3cac86ca](3cac86ca3c) home-assistant: test ign_sismologia component
- [1cc751cc](1cc751cca1) dpdk: 21.02 -> 21.05
- [32c2dd30](32c2dd304d) docs: nixos release notes to CommonMark (2105)
- [f038416b](f038416b9e) python3Packages.pyisy: init at 3.0.0
- [ccc705e0](ccc705e0f9) home-assistant: update component-packages.nix
- [2b38c5ea](2b38c5eac2) home-assistant: test isy994 component
- [f91d7910](f91d7910ea) doc: cleanup documentation relating to release notes
- [4a1d17d5](4a1d17d5c3) python3Packages.pygti: init at 0.9.2
- [628799e3](628799e3f8) home-assistant: update component-packages.nix
- [4cd0927e](4cd0927ea6) home-assistant: test hvv_departures component
- [c800214a](c800214a2d) xterm: support cross-compilation
- [75fc1371](75fc137151) python3Packages.nextcloudmonitor: init at 1.2.0
- [79423a31](79423a31e5) home-assistant: update component-packages.nix
- [7fbbbf20](7fbbbf20b6) polkadot: 0.9.5 -> 0.9.6
- [74e4ba98](74e4ba987e) bunnyfetch: unstable-2021-05-24 -> unstable-2021-06-19
- [3c8372b2](3c8372b2ef) electron_13: 13.1.2 -> 13.1.3
- [c1f93472](c1f9347282) electron_12: 12.0.11 -> 12.0.12
- [942f13fb](942f13fb87) electron_11: 11.4.8 -> 11.4.9
- [4516f069](4516f0695d) vimPlugins: update
- [cd58ea33](cd58ea3344) vimPlugins.luasnip: init at 2021-06-23
- [c0591a4b](c0591a4b6a) vscode-extensions.hashicorp.terraform: 2.12.1 -> 2.13.0
- [08931215](08931215f4) terraform-providers.grafana: 1.10.0 -> 1.12.0
- [3beb2a83](3beb2a8353) cargo-embed: 0.10.1 -> 0.11.0
- [68dd7bca](68dd7bca1b) 4ti2: add myself to maintainers
- [cf7e051e](cf7e051ede) fsearch: init at unstable-2021-06-23
- [0b3e58b4](0b3e58b4a5) linode-cli: 5.0.1 -> 5.4.3
- [00f70edc](00f70edcc6) argocd: 2.0.1 -> 2.0.4
- [3f1061c7](3f1061c72b) python3Packages.milc: 1.3.0 -> 1.4.2
- [0ed028bd](0ed028bdd1) esphome: 1.19.3 -> 1.19.4
- [5a9fdf5b](5a9fdf5bcd) ijq: 0.3.4 -> 0.3.5
- [419e4299](419e4299a6) linux_xanmod: 5.12.12 -> 5.12.13
- [3e73f3c7](3e73f3c7ff) xorg.xf86inputlibinput: 1.0.1 -> 1.1.0
- [bd223b0d](bd223b0dbd) pythonPackages.webtest-aiohttp: init at 2.0.0
- [08ab3757](08ab375715) pythonPackages.webargs: init at 8.0.0
- [6ef4742d](6ef4742d99) python3Packages.marshmallow: add maintainer
- [955df801](955df801e8) ocamlPackages.ocamlgraph: 1.8.8 -> 2.0.0 ([NixOS/nixpkgs⁠#126703](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126703))
- [4e9f5e82](4e9f5e8239) python3Packages.hstspreload: 2021.5.31 -> 2021.6.21
- [19496166](1949616615) libpqxx_6: init at 6.4.5
- [3394da87](3394da8775) hydra-unstable: fix build, pin libpqxx to 6.4.5
- [4ac6180a](4ac6180a19) materia-kde-theme: init at 20210612 ([NixOS/nixpkgs⁠#127873](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/127873))
- [dfaee500](dfaee500d7) python3Packages.pytest-order: 0.10.0 -> 1.0.0
- [05b9351c](05b9351c29) python3Packages.konnected: init at 1.2.0
- [fade1183](fade118376) home-assistant: update component-packages.nix
- [e66619bd](e66619bdf5) home-assistant: test konnected component
- [d22a5612](d22a561225) git-branchless: init at 0.3.2
- [98db2f6b](98db2f6bfa) pythonPackages.pyvis: init at 2021-04-29 ([NixOS/nixpkgs⁠#127811](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/127811))
- [e829ab8d](e829ab8d65) chromiumBeta: 92.0.4515.59 -> 92.0.4515.70
- [a4fccd0a](a4fccd0a64) python3Packages.hid: init at 1.0.4
- [6e76ab58](6e76ab5841) python3Packages.python-izone: init at 1.1.5
- [dbd6b227](dbd6b2279c) home-assistant: update component-packages.nix
- [6ba0fd8d](6ba0fd8d5b) home-assistant: test izone component
- [eaf590d9](eaf590d941) vorta: enable tests and install the desktop file
- [bda5f659](bda5f65931) matcha-gtk-theme: 2021-06-02 -> 2021-06-24
2021-06-29 23:17:26 +02:00
30913d9918 flake.lock: Updating 'emacs-overlay (nix-community/emacs-overlay)' - be94f53e -> f89641db
### Changes for emacs-overlay

On branch: master
Commits: be94f53e84...f89641db53

- [af448537](af448537b6) Add binary cache to github action
- [5d66140c](5d66140c54) Add name to cachix-action
- [5f9698ee](5f9698eefe) Updated repos/emacs
- [5fb664ca](5fb664ca10) Updated repos/melpa
- [ff016620](ff01662026) Updated repos/emacs
- [a6a18957](a6a189573c) Updated repos/melpa
- [a98e92e3](a98e92e3c7) Updated repos/emacs
- [5892ca1c](5892ca1ca0) Updated repos/emacs
- [e0707137](e07071372f) Updated repos/melpa
- [06565cef](06565cefbd) Updated repos/emacs
- [4304defa](4304defaa2) Updated repos/melpa
- [9189319d](9189319d22) Updated repos/elpa
- [4fdaf266](4fdaf266ea) Updated repos/emacs
- [8e63b486](8e63b4865f) Updated repos/melpa
- [ead7453c](ead7453cd1) Updated repos/emacs
- [635cc275](635cc27510) Updated repos/melpa
- [072a9993](072a999305) Updated repos/emacs
- [9f84a92c](9f84a92c7e) Updated repos/melpa
- [f8a65c55](f8a65c557b) stable nixpkgsRelease: 20.09->21.05
- [6c3bc6da](6c3bc6dabd) Updated repos/elpa
- [e9842e2c](e9842e2cd5) Updated repos/emacs
- [f8abc95a](f8abc95ab4) Updated repos/melpa
- [9b3f2629](9b3f262942) Updated repos/org
- [ea06ccd1](ea06ccd12a) Updated repos/emacs
- [566fb7ae](566fb7aea2) Updated repos/melpa
- [197b6cc3](197b6cc3d6) Updated repos/emacs
- [bf08680a](bf08680a89) Updated repos/melpa
- [280d364d](280d364dc8) Updated repos/emacs
- [e056a7bd](e056a7bd62) Updated repos/emacs
- [b909dd44](b909dd44b8) Updated repos/melpa
- [7f8de614](7f8de61485) Updated repos/elpa
- [b04d3dd8](b04d3dd811) Updated repos/emacs
- [6531e6a9](6531e6a957) Updated repos/melpa
- [f5cf6e9e](f5cf6e9e13) Updated repos/melpa
- [4ffda01e](4ffda01efb) Updated repos/emacs
- [7a60fbc3](7a60fbc3fb) Updated repos/melpa
- [26ff4860](26ff48606f) Updated repos/elpa
- [efeb6780](efeb678097) Updated repos/emacs
- [f2710f2e](f2710f2efb) Updated repos/emacs
- [494ca212](494ca21216) Updated repos/melpa
- [80a0572a](80a0572a62) Updated repos/elpa
- [ff6961ca](ff6961ca00) Updated repos/emacs
- [de312c19](de312c1974) Updated repos/melpa
- [ef239616](ef23961671) Updated repos/melpa
- [9253e74d](9253e74d1f) Updated repos/emacs
- [c5e658f8](c5e658f85d) Updated repos/melpa
- [62e26e68](62e26e688a) Updated repos/emacs
- [a002c6d3](a002c6d3cd) Updated repos/melpa
- [24f5922f](24f5922f4d) Updated repos/emacs
- [2ff3bbb4](2ff3bbb43a) Updated repos/melpa
- [6b6945c6](6b6945c606) Updated repos/melpa
- [076d1ace](076d1aceed) Updated repos/elpa
- [ee22f372](ee22f372b5) Updated repos/emacs
- [635ddae4](635ddae4ea) Updated repos/melpa
- [b8b50357](b8b50357fc) Updated repos/emacs
- [3c0835d5](3c0835d524) Updated repos/melpa
- [463209ef](463209efa1) Updated repos/emacs
- [d9baacb6](d9baacb691) Updated repos/melpa
- [0233167e](0233167e2b) Updated repos/melpa
- [910f80cf](910f80cfe1) Updated repos/org
- [78065ebd](78065ebd26) Updated repos/emacs
- [ab78bd1e](ab78bd1edc) Updated repos/melpa
- [1ba6f517](1ba6f51743) Updated repos/emacs
- [a2601cd7](a2601cd789) Updated repos/emacs
- [54104420](5410442051) Updated repos/melpa
- [ace9c400](ace9c400cd) Updated repos/emacs
- [e88ae367](e88ae3670c) Updated repos/elpa
- [5f5624a2](5f5624a255) Updated repos/emacs
- [b9298d97](b9298d977f) Updated repos/melpa
- [09b55755](09b557553d) Updated repos/emacs
- [280beee3](280beee357) Updated repos/elpa
- [ac5b5d31](ac5b5d310f) Updated repos/emacs
- [8827230e](8827230e69) Updated repos/melpa
- [952dacd2](952dacd23b) Updated repos/elpa
- [f6768d39](f6768d390c) Updated repos/emacs
- [6db07391](6db07391fb) Updated repos/melpa
- [d68a0f76](d68a0f76c1) Updated repos/melpa
- [240f965f](240f965f98) Updated repos/emacs
- [022d0216](022d0216b6) Updated repos/emacs
- [9d767288](9d767288c5) Updated repos/elpa
- [b1af1158](b1af115868) Updated repos/melpa
- [8d7b282a](8d7b282a24) Updated repos/elpa
- [832b841d](832b841dd2) Updated repos/emacs
- [84d5cef8](84d5cef80f) Updated repos/melpa
- [eb561e58](eb561e58db) Updated repos/melpa
- [554ea495](554ea4953b) Updated repos/emacs
- [e9ced9b4](e9ced9b4f2) Updated repos/melpa
- [a30447e2](a30447e290) Updated repos/elpa
- [4971a906](4971a906cc) Updated repos/emacs
- [10103633](1010363380) Updated repos/melpa
- [ec5f14c9](ec5f14c9b6) Updated repos/emacs
- [877fe35a](877fe35a2e) Updated repos/melpa
- [544e2cc9](544e2cc9e8) Updated repos/emacs
- [d8bf1e0a](d8bf1e0a7a) Updated repos/melpa
- [4f6c2e1a](4f6c2e1a7f) Updated repos/elpa
- [88af8392](88af8392a6) Updated repos/melpa
- [80c0348b](80c0348b6c) Updated repos/org
- [c13b3ccb](c13b3ccb85) Updated repos/emacs
- [ffb8af8a](ffb8af8a8f) Updated repos/melpa
- [b62d40ee](b62d40ee14) Updated repos/melpa
- [d8989aa7](d8989aa72e) Updated repos/emacs
- [38d2c58c](38d2c58c70) Updated repos/melpa
- [25d5cd85](25d5cd85a4) Updated repos/emacs
- [641d7524](641d7524e3) Updated repos/elpa
- [fc932809](fc932809cd) Updated repos/emacs
- [699540a6](699540a647) Updated repos/melpa
- [04205342](0420534276) Updated repos/melpa
- [fc3b9d85](fc3b9d858a) Updated repos/elpa
- [f9de4eec](f9de4eeca6) Updated repos/emacs
- [4a41a4ca](4a41a4ca22) Updated repos/melpa
- [2e30904d](2e30904d5f) Updated repos/emacs
- [4690423c](4690423c87) Updated repos/melpa
- [36f54742](36f54742b4) Updated repos/melpa
- [fa216fdf](fa216fdf97) Updated repos/elpa
- [f89641db](f89641db53) Updated repos/melpa
2021-06-29 23:17:10 +02:00
7daa6d9045 flake.lock: Updating 'org-mode (emacs-straight/org-mode)' - f70e3625 -> 5a03ad86
### Changes for org-mode

On branch: master
Commits: f70e36252a...5a03ad86cd

- [f092cb30](f092cb30d9) ox-latex: Allow reference command to be customised
- [9aa304f9](9aa304f957) ox-latex: Fix defcustom keywords.
- [aba1f206](aba1f20661) agenda: Fix org-duration-to-minutes error (take 3)
2021-06-29 23:06:23 +02:00
f2dd0ddf93 flake.lock: Updating 'nixpkgs (NixOS/nixpkgs)' - 7e9e1b63 -> 189a1368
### Changes for nixpkgs

On branch: nixpkgs-unstable
Commits: 7e9e1b6351...189a136887

- [c6256758](c6256758ae) home-assistant: test atag component
- [1aacbf10](1aacbf108d) vscode-extensions.coolbear.systemd-unit-file: init at 1.0.6
- [39fd960e](39fd960ee1) vscodium: 1.56.2 -> 1.57.0
- [790d2fff](790d2fffdf) pythonPackages.blurhash: init at 1.1.4
- [523638bf](523638bffc) python3Packages.mastodon-py: init at 1.5.1
- [02d1feff](02d1feffd8) home-assistant: update component-packages.nix
- [0ae4fd5b](0ae4fd5bc3) ocamlPackages.cstruct: remove at 1.9.0 for OCaml < 4.02
- [82d5971e](82d5971ee8) hunspell-dicts: add Dutch dictionary
- [0993162e](0993162efa) hunspell-dicts: change name to pname
- [052ea9df](052ea9dfc0) vscode-extensions.hashicorp.terraform: 2.12.0 -> 2.12.1
- [0874136d](0874136de6) python3Packages.androidtv: 0.0.59 -> 0.0.60
- [55b565d8](55b565d85a) vector: 0.13.1 -> 0.14.0
- [799cdbd8](799cdbd834) tailscale: add `interfaceName` option
- [d11e9b1f](d11e9b1fe5) kitty: runHook preBuild and postBuild
- [f3cd158e](f3cd158eac) kitty: 0.21.0 -> 0.21.1
- [ade0e5bd](ade0e5bd30) python3Packages.aio-geojson-client: init at 0.14
- [1d948b07](1d948b071d) python3Packages.aio-geojson-geonetnz-quakes: init at 0.12
- [41e46438](41e46438ef) python3Packages.aio-geojson-geonetnz-volcano: init at 0.5
- [0f28f4e8](0f28f4e8a0) python3Packages.aio-geojson-nsw-rfs-incidents: init at 0.3
- [ce1a051d](ce1a051d13) home-assistant: update component-packages
- [2680c5c7](2680c5c780) home-assistant: enable geo* tests
- [d97fa35f](d97fa35f94) python3Packages.aio-geojson-nsw-rfs-incidents: 0.3 -> 0.4
- [a52e3408](a52e3408fa) litecli: 1.5.0 -> 1.6.0
- [77a7b338](77a7b33804) google-fonts: unstable-2021-01-19 -> unstable-2021-06-12
- [542575ad](542575ad48) llvmPackages_git: 2021-05-17 -> 2021-06-04
- [9fb4d19c](9fb4d19c2e) Allow to extend PHP_INI_SCAN_DIR
- [8bfd7bf3](8bfd7bf370) filezilla: add wrapGAppsHook ([NixOS/nixpkgs⁠#126765](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126765))
- [2bbf6c86](2bbf6c8687) Move CompCert into coqPackages. ([NixOS/nixpkgs⁠#126214](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126214))
- [83bf3464](83bf34642a) llvmPackages_git: Fix the libcxx and libcxxabi builds
- [2ac508d5](2ac508d578) linux-kernel: update config for 5.13
- [6d33412d](6d33412d6d) linux-testing: 5.12-rc6 -> 5.13-rc6
- [6cbe05ab](6cbe05ab16) ricty: fix source
- [b083c7e9](b083c7e9eb) darwin.mas: Fix dontBuild
- [3209371b](3209371bbe) maintainers: add deliciouslytyped
- [4489d3e8](4489d3e844) onedrive: 2.4.11 -> 2.4.12
- [fb754bad](fb754bad11) bootiso: add missing dependencies
- [f0545ba9](f0545ba9d3) markdown-anki-decks: init at 1.0.0 ([NixOS/nixpkgs⁠#126782](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126782))
- [5d341cda](5d341cdaed) reaper: 6.28 -> 6.29 ([NixOS/nixpkgs⁠#126838](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126838))
- [15353873](15353873f2) sentry-cli: init at 1.66.0 ([NixOS/nixpkgs⁠#126228](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126228))
- [502de3c3](502de3c377) openssl: fix Darwin cross infinite recursion
- [928ade7e](928ade7e79) keepassxc: 2.6.4 -> 2.6.6
- [2dfbbc02](2dfbbc0266) zig: checks are back!
- [92a5fe18](92a5fe180a) hashcat: 6.2.1 -> 6.2.2 ([NixOS/nixpkgs⁠#126820](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126820))
- [50f15c61](50f15c610a) nixpkgs-review: 2.6.0 -> 2.6.1 ([NixOS/nixpkgs⁠#126845](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126845))
- [059d6a7b](059d6a7bbd) zoxide: 0.7.0 -> 0.7.2
- [57388918](57388918ff) thefuck: 3.30 -> 3.31
- [cd532ef5](cd532ef505) blueberry: 1.4.2 -> 1.4.3
- [bf2a5848](bf2a58483d) retro-gtk: init at 1.0.2
- [5682da4b](5682da4b86) cinnamon.bulky: 1.1 -> 1.3
- [2d773cc4](2d773cc4e5) exploitdb: 2021-06-05 -> 2021-06-12
- [8a362be5](8a362be5fe) python3Packages.wled: 0.4.4 -> 0.5.0 ([NixOS/nixpkgs⁠#126319](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126319))
- [60f31916](60f3191604) bpytop: 1.0.66 -> 1.0.67
- [cd68c949](cd68c94996) rpg-cli: 0.4.0 -> 0.4.1
- [90293c9b](90293c9b68) consul-template: 0.25.2 -> 0.26.0
- [8b0e2be7](8b0e2be7de) eksctl: 0.52.0 -> 0.53.0
- [28552b21](28552b21f9) python3Packages.async-lru: init at unstable-2020-10-24
- [d0e1c4fc](d0e1c4fcd8) python3Packages.tgcrypto: init at 1.2.2
- [11a53f37](11a53f3761) python3Packages.pyrogram: init at 1.2.0
- [5c04139d](5c04139da2) gitlab: 13.12.3 -> 13.12.4
- [d6e31798](d6e317980d) python3Packages.wallbox: init at 0.4.5
- [d96bb54c](d96bb54ca1) home-assistant: update component-packages.nix
- [71ae2fb1](71ae2fb1c6) python3Packages.click-threading: 0.4.4 -> 0.5.0
- [72ba8b19](72ba8b1960) vdirsyncer: 0.16.8 -> 0.18.0
- [625f2a8e](625f2a8eaa) python3Packages.ms-cv: init at 0.1.1
- [5de52802](5de528024e) python3Packages.xbox-webapi: init at 2.0.11
- [0ff4a377](0ff4a377b0) home-assistant: update component-packages.nix
- [73e98d5c](73e98d5c40) home-assistant: test xbox component
- [29f75088](29f750884d) codespell: 2.0.0 -> 2.1.0
- [50fda796](50fda7969b) alertmanager-irc-relay: 0.4.1 -> 0.4.2
- [8e596227](8e5962272b) gnome.aisleriot: 3.22.16 -> 3.22.17
- [5ba34e70](5ba34e7078) cheat: 4.2.1 -> 4.2.2
- [9492a020](9492a02002) kora-icon-theme: 1.4.2 -> 1.4.3
- [177b106e](177b106e99) libquotient: 0.6.6 -> 0.6.7
- [7ed53cf8](7ed53cf84d) flyctl: 0.0.222 -> 0.0.223
- [c7f00cd5](c7f00cd594) armadillo: 10.5.1 -> 10.5.2
- [feba2c9b](feba2c9b39) helmfile: 0.139.7 -> 0.139.8
- [d66fbb4f](d66fbb4fe1) corosync: 3.1.3 -> 3.1.4
- [b8934805](b8934805a7) dnsproxy: 0.37.5 -> 0.37.6
- [961024dd](961024ddc9) auto-cpufreq: 1.6.1 -> 1.6.4
- [358aa90e](358aa90e30) nixos/auto-cpufreq: fix service wantedBy
- [702586e0](702586e054) croc: 9.1.4 -> 9.1.5
- [549b9305](549b9305d6) subsurface: 4.9.10 -> 5.0.1
- [274ee2df](274ee2df9a) staticjinja: 1.0.1 -> 2.1.0, add version test ([NixOS/nixpkgs⁠#126690](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126690))
- [687c03a5](687c03a5d0) whitesur-icon-theme: init at 2021-05-20 ([NixOS/nixpkgs⁠#126783](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126783))
- [11027eba](11027eba54) subsurface: googlemaps 2018-06-02 -> 2021-03-19
- [43d18553](43d1855378) sbt: 1.5.3 -> 1.5.4
- [f49c857a](f49c857a1d) fonttosfnt: 1.2.1 -> 1.2.2
- [1ba171f9](1ba171f9d1) python3Packages.wled: 0.5.0 -> 0.6.0
- [319537cb](319537cb02) terraform: fmt
- [84a4536e](84a4536e58) nim: 1.4.6 -> 1.4.8
- [f528b1e4](f528b1e43e) sogo: 5.0.1 -> 5.1.1
- [2e10f973](2e10f973b5) sope: 5.0.1 -> 5.1.1
- [eacb00cf](eacb00cf2e) g203-led: init at 20210508-git
- [7d940ef3](7d940ef3e1) vsh: 0.11.0 -> 0.12.0
- [8540133f](8540133fb7) chromium: 91.0.4472.101 -> 91.0.4472.106
- [f33e2c5c](f33e2c5c2b) terraform_1_0_0: rename to terraform_1_0
- [355aa90c](355aa90cfc) terraform: export mkTerraform
- [01b60465](01b6046594) terraform: switch to 1.0
- [3919d730](3919d73030) terraform: drop old versions
- [01127a05](01127a0527) terraform-providers.kafka: 0.2.12 -> 0.3.3 ([NixOS/nixpkgs⁠#126880](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126880))
- [816b68f4](816b68f489) python3Packages.pyfireservicerota: init at 0.0.40
- [7cd991ea](7cd991ea1c) home-assistant: update component-packages.nix
- [4ba8b0b9](4ba8b0b981) home-assistant: test fireservicerota component
- [59b66edb](59b66edba7) mlt: Add option to build python bindings
- [2ec8590e](2ec8590e19) mlt: Add jackrack and ladspa support
- [f2c26dd8](f2c26dd810) maintainers: add polygon
- [d6813915](d68139154c) flowblade: init at 2.8.0.3
- [671989e4](671989e41a) songrec: install /share ([NixOS/nixpkgs⁠#126891](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126891))
- [b05b6e2a](b05b6e2a0d) python3Packages.foobot-async: init at 1.0.0
- [f7100f7c](f7100f7cea) home-assistant: update component-packages.nix
- [90e0a7b0](90e0a7b04e) home-assistant: test foobot component
- [b38adedf](b38adedf52) ocamlPackages.opam-file-format: 2.1.2 -> 2.1.3
- [9b51b479](9b51b47902) home-assistant: make parse-requirements.py not print missing dependencies
- [f83dd6ab](f83dd6ab01) python3Packages.pyflick: init at 0.0.2
- [efa23686](efa23686a0) home-assistant: update component-packages.nix
- [7127fa61](7127fa6179) home-assistant: test flick_electric component
- [b9ff2b61](b9ff2b61c1) home-assistant: test more components
- [876dde64](876dde6413) maim,slop: Remove myself as maintainer
- [42ded9d5](42ded9d56b) maintainers: remove mbakke
- [07731256](0773125628) home-assistant: make parse-requirements.py print the percentage of supported components
- [ac0e2f63](ac0e2f63d0) home-assistant: enable wallbox tests
- [14a592b5](14a592b54b) terragrunt: 0.29.9 -> 0.30.3 ([NixOS/nixpkgs⁠#126857](http://r.duckduckgo.com/l/?uddg=https://github.com/NixOS/nixpkgs/issues/126857))
- [a3eca489](a3eca489bc) python3Packages.greeclimate: init at 0.11.8
- [f1230343](f12303432c) home-assistant: update component-packages.nix
- [bbb92f6d](bbb92f6dd9) home-assistant: test gree component
- [f09f0be1](f09f0be183) perlPackages.MojoliciousPluginWebpack: 0.14 -> 1.01
- [6deaecd1](6deaecd116) python3Packages.graphql-subscription-manager: init at 0.4.0
- [09b17967](09b17967b3) convos: 6.11 -> 6.24
- [9414a47d](9414a47d63) python3Packages.tibber: init at 0.17.1
- [8cff2217](8cff2217f8) home-assistant: update component-packages.nix
- [0f02d407](0f02d4077b) home-assistant: test tibber component
- [cca2d27d](cca2d27de2) nano: 5.7 -> 5.8
- [b3eeffe9](b3eeffe90a) micropython: fix build on aarch64-darwin and aarch64-linux
- [ff3b3e69](ff3b3e696a) nixos-rebuild: fix creating ./result symlink for flakes
2021-06-29 23:06:23 +02:00
b075af0dc5 flake.lock: Updating 'emacs-overlay (nix-community/emacs-overlay)' - be94f53e -> d68a0f76
### Changes for emacs-overlay

On branch: master
Commits: be94f53e84...d68a0f76c1

- [af448537](af448537b6) Add binary cache to github action
- [5d66140c](5d66140c54) Add name to cachix-action
- [5f9698ee](5f9698eefe) Updated repos/emacs
- [5fb664ca](5fb664ca10) Updated repos/melpa
- [ff016620](ff01662026) Updated repos/emacs
- [a6a18957](a6a189573c) Updated repos/melpa
- [a98e92e3](a98e92e3c7) Updated repos/emacs
- [5892ca1c](5892ca1ca0) Updated repos/emacs
- [e0707137](e07071372f) Updated repos/melpa
- [06565cef](06565cefbd) Updated repos/emacs
- [4304defa](4304defaa2) Updated repos/melpa
- [9189319d](9189319d22) Updated repos/elpa
- [4fdaf266](4fdaf266ea) Updated repos/emacs
- [8e63b486](8e63b4865f) Updated repos/melpa
- [ead7453c](ead7453cd1) Updated repos/emacs
- [635cc275](635cc27510) Updated repos/melpa
- [072a9993](072a999305) Updated repos/emacs
- [9f84a92c](9f84a92c7e) Updated repos/melpa
- [f8a65c55](f8a65c557b) stable nixpkgsRelease: 20.09->21.05
- [6c3bc6da](6c3bc6dabd) Updated repos/elpa
- [e9842e2c](e9842e2cd5) Updated repos/emacs
- [f8abc95a](f8abc95ab4) Updated repos/melpa
- [9b3f2629](9b3f262942) Updated repos/org
- [ea06ccd1](ea06ccd12a) Updated repos/emacs
- [566fb7ae](566fb7aea2) Updated repos/melpa
- [197b6cc3](197b6cc3d6) Updated repos/emacs
- [bf08680a](bf08680a89) Updated repos/melpa
- [280d364d](280d364dc8) Updated repos/emacs
- [e056a7bd](e056a7bd62) Updated repos/emacs
- [b909dd44](b909dd44b8) Updated repos/melpa
- [7f8de614](7f8de61485) Updated repos/elpa
- [b04d3dd8](b04d3dd811) Updated repos/emacs
- [6531e6a9](6531e6a957) Updated repos/melpa
- [f5cf6e9e](f5cf6e9e13) Updated repos/melpa
- [4ffda01e](4ffda01efb) Updated repos/emacs
- [7a60fbc3](7a60fbc3fb) Updated repos/melpa
- [26ff4860](26ff48606f) Updated repos/elpa
- [efeb6780](efeb678097) Updated repos/emacs
- [f2710f2e](f2710f2efb) Updated repos/emacs
- [494ca212](494ca21216) Updated repos/melpa
- [80a0572a](80a0572a62) Updated repos/elpa
- [ff6961ca](ff6961ca00) Updated repos/emacs
- [de312c19](de312c1974) Updated repos/melpa
- [ef239616](ef23961671) Updated repos/melpa
- [9253e74d](9253e74d1f) Updated repos/emacs
- [c5e658f8](c5e658f85d) Updated repos/melpa
- [62e26e68](62e26e688a) Updated repos/emacs
- [a002c6d3](a002c6d3cd) Updated repos/melpa
- [24f5922f](24f5922f4d) Updated repos/emacs
- [2ff3bbb4](2ff3bbb43a) Updated repos/melpa
- [6b6945c6](6b6945c606) Updated repos/melpa
- [076d1ace](076d1aceed) Updated repos/elpa
- [ee22f372](ee22f372b5) Updated repos/emacs
- [635ddae4](635ddae4ea) Updated repos/melpa
- [b8b50357](b8b50357fc) Updated repos/emacs
- [3c0835d5](3c0835d524) Updated repos/melpa
- [463209ef](463209efa1) Updated repos/emacs
- [d9baacb6](d9baacb691) Updated repos/melpa
- [0233167e](0233167e2b) Updated repos/melpa
- [910f80cf](910f80cfe1) Updated repos/org
- [78065ebd](78065ebd26) Updated repos/emacs
- [ab78bd1e](ab78bd1edc) Updated repos/melpa
- [1ba6f517](1ba6f51743) Updated repos/emacs
- [a2601cd7](a2601cd789) Updated repos/emacs
- [54104420](5410442051) Updated repos/melpa
- [ace9c400](ace9c400cd) Updated repos/emacs
- [e88ae367](e88ae3670c) Updated repos/elpa
- [5f5624a2](5f5624a255) Updated repos/emacs
- [b9298d97](b9298d977f) Updated repos/melpa
- [09b55755](09b557553d) Updated repos/emacs
- [280beee3](280beee357) Updated repos/elpa
- [ac5b5d31](ac5b5d310f) Updated repos/emacs
- [8827230e](8827230e69) Updated repos/melpa
- [952dacd2](952dacd23b) Updated repos/elpa
- [f6768d39](f6768d390c) Updated repos/emacs
- [6db07391](6db07391fb) Updated repos/melpa
- [d68a0f76](d68a0f76c1) Updated repos/melpa
2021-06-29 23:06:23 +02:00
e9a82e6557 Add a patch for restart-emacs
Before this change, trying to use `doom/restart-and-restore` would
result in a failed to load `default.el` as the wrong binary would be launched.

This fixes that.
2021-06-29 23:06:23 +02:00
4857f7c12a flake.lock: Updating 'flake-utils (numtide/flake-utils)' - 7d706970 -> f7e004a5
### Changes for flake-utils

On branch: master
Commits: 7d706970d9...f7e004a55b

- [98c8d36b](98c8d36b18) Add checks-utils ([numtide/flake-utils⁠#36](http://r.duckduckgo.com/l/?uddg=https://github.com/numtide/flake-utils/issues/36))
- [f7e004a5](f7e004a55b) Fix derivation name with invalid characters ([numtide/flake-utils⁠#38](http://r.duckduckgo.com/l/?uddg=https://github.com/numtide/flake-utils/issues/38))
2021-06-29 23:06:23 +02:00