diff --git a/guix-profile.org b/guix-profile.org index 7d83137..a56b33f 100644 --- a/guix-profile.org +++ b/guix-profile.org @@ -124,3 +124,40 @@ Even though it's a dead project, seemingly, there is something so special about #+begin_src scheme :noweb-ref guix-packages (specification->package "scsh") #+end_src + +I use xbindkeys to define my keybindings because it lets me configure them in Scheme. + +#+begin_src scheme :noweb-ref guix-packages + (specification->package "xbindkeys") +#+end_src + +Syncthing is an easy way to set up automatic file sharing between different devices. + +#+begin_src scheme :noweb-ref guix-packages + (specification->package "syncthing") +#+end_src + +I need openconnect and freerdp for work. + +#+begin_src scheme :noweb-ref guix-packages + (specification->package "openconnect") + (specification->package "freerdp") +#+end_src + +Shellcheck is great to help make sure I don't make dumb mistakes in my shell scripts. + +#+begin_src scheme :noweb-ref guix-packages + (specification->package "shellcheck") +#+end_src + +Flameshot is a great application for making screenshots. + +#+begin_src scheme :noweb-ref guix-packages + (specification->package "flameshot") +#+end_src + +Kde Connect is an awesome application to connect devices together for functions other than file sharing (such as notification sharing). + +#+begin_src scheme :noweb-ref guix-packages + (specification->package "kdeconnect") +#+end_src