diff options
author | Preston Pan <preston@nullring.xyz> | 2024-03-03 14:59:48 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2024-03-03 14:59:48 -0800 |
commit | 6131810bb69bcb7b221cb332391cd3482920b22b (patch) | |
tree | 3314bea3ee59b961b16797705c88bf085e3964c2 | |
parent | ff214773f5752bef66e5ac5fd666dafd6b5ac271 (diff) |
add webring
-rw-r--r-- | about.org | 5 | ||||
-rw-r--r-- | config/nix.org | 10 | ||||
-rw-r--r-- | index.org | 2 |
3 files changed, 14 insertions, 3 deletions
@@ -13,6 +13,11 @@ #+html_head: <meta name="msapplication-TileColor" content="#da532c"> #+html_head: <meta name="theme-color" content="#ffffff"> +* Webrings +This website is a part of these webrings: + +[[https://baccyflap.com][<]] [[https://nullring.xyz][nullring]] [[https://pen15.agency][>]] + * About Me ** whoami? [[https://preston.nullring.xyz][Preston Pan]]. Although, that is not really important for the enjoyment of ret2pop, and diff --git a/config/nix.org b/config/nix.org index 8af80ff..5c481fb 100644 --- a/config/nix.org +++ b/config/nix.org @@ -4,7 +4,7 @@ #+html_head: <link rel="stylesheet" type="text/css" href="../style.css" /> * Configuration -#+begin_src nix :tangle +#+begin_src nix :tangle t # Edit this configuration file to define what should be installed on # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). @@ -93,7 +93,6 @@ pkgs.acpilight pkgs.light pkgs.gnupg - pkgs.pass pkgs.fira-code pkgs.croc pkgs.nixpkgs-fmt @@ -123,6 +122,7 @@ pkgs.mpc-cli pkgs.yt-dlp pkgs.mpv + pkgs.python3 (pkgs.nerdfonts.override { fonts = [ "Iosevka" ]; }) (pkgs.discord.override { withOpenASAR = true; @@ -1123,6 +1123,12 @@ b = "branch"; }; }; + programs.password-store = { + enable = true; + settings = { + PASSWORD_STORE_KEY = "2B749D1FB976E81613858E490290504780B30E20"; + }; + }; wayland.windowManager.hyprland = { enable = true; @@ -64,7 +64,7 @@ website: #+begin_src shell :exports code :results silent cd ~/org/website git add . -git commit -m "change readme" +git commit -m "add webring" git push origin main rsync -azvP ~/website_html/ root@nullring.xyz:/var/www/ret2pop/ #+end_src |