<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>wizardwatch</title>
    <link>https://wizardwatch.net/</link>
    <description>Recent content on wizardwatch</description>
    <generator>Hugo -- gohugo.io</generator>
    <lastBuildDate>Sat, 20 Jan 2024 00:00:00 +0000</lastBuildDate><atom:link href="https://wizardwatch.net/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>2024-Plans</title>
      <link>https://wizardwatch.net/blog/2024-plans/</link>
      <pubDate>Sat, 20 Jan 2024 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/blog/2024-plans/</guid>
      <description>2024 Plans The past couple years have had some big changes! I go to UGA now! I am now focusing on learning biotech, the software for which runs on a recently built homelab. I’ve had a few jobs, and learned so much. It’s been great! Unfortunately, I have failed to document this journey, and it is time to start.
The Past I have been busy, but everyone is busy. The biggest thing preventing me from writing blog posts is actually a lack of “finished” projects.</description>
    </item>
    
    <item>
      <title>My NixOS Configuration: Part one, flake.nix</title>
      <link>https://wizardwatch.net/blog/nix-conf-1/</link>
      <pubDate>Thu, 25 Nov 2021 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/blog/nix-conf-1/</guid>
      <description>My NixOS Configuration My NixOS configuration has grown organically (a nice way to say it is a mess). I like how it works, though I am slowly refactoring it to something approximating sanity. As a part of that effort in this blog series I endeavour to document it to the point where anyone interested in switching to NixOS could understand how something works and why I included it.
flake.nix flake.nix is the core of any configuration that uses flakes to declaratively manage the repositories it draws packages from.</description>
    </item>
    
    <item>
      <title>My First Post</title>
      <link>https://wizardwatch.net/blog/my-first-post/</link>
      <pubDate>Mon, 08 Nov 2021 21:42:13 -0500</pubDate>
      
      <guid>https://wizardwatch.net/blog/my-first-post/</guid>
      <description>I am not sure if I am doing this correctly, but if I am &amp;ldquo;Hello World!&amp;rdquo; I am wizardwatch and I am here to blog about everything under the sun, with a focus on NixOS and programming content.</description>
    </item>
    
    <item>
      <title>About</title>
      <link>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/readme/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/readme/</guid>
      <description>The Genchumen Knowledge-Base This project seeks to serve as a source for quick information to aid in solving Capture-The-Flag challenges, although it could very well serve as a general launching point for learning about cybersecurity.</description>
    </item>
    
    <item>
      <title>Algorithms</title>
      <link>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/algo/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/algo/</guid>
      <description>Modulo Function  Written as % or $\mod x$  The modulo function is the equivalent of taking the remainder of two numbers.
Modular Equivalence A common way to express modular equivalence by a number $n$ is $x\equiv y\pmod n$
Greatest Common Divisor  Written as $gcd(x,y)$  The greatest common divisor of two or more integers is the largest positive integer that divides each of the integers.
Least Common Multiple  Written as $lcm(x,y)$  Euler&#39;s Totient Function  A.</description>
    </item>
    
    <item>
      <title>Binary Inspection</title>
      <link>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/bin/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/bin/</guid>
      <description></description>
    </item>
    
    <item>
      <title>common.nix</title>
      <link>https://wizardwatch.net/projects/nixos/common/common.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/common/common.nix/</guid>
      <description>{ pkgs, config, ... }:{ imports = [ ./config.nix ./packages.nix ./lsp.nix ]; } </description>
    </item>
    
    <item>
      <title>common_desktop.nix</title>
      <link>https://wizardwatch.net/projects/nixos/common/common_desktop.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/common/common_desktop.nix/</guid>
      <description>{ config, pkgs, ...}: { virtualisation.virtualbox.host.enable = true; users.extraGroups.vboxusers.members = [ &amp;#34;user-with-access-to-virtualbox&amp;#34; ]; environment.systemPackages = with pkgs; [ mpv gimp zathura alacritty # for rifle used with broot ranger inkscape openscad musescore pavucontrol ## pipewire equalizer pulseeffects-pw ## if only I could draw krita ]; # # # fonts # # # fonts = { fontconfig = { enable = true; defaultFonts = { monospace = [ &amp;#34;Iosevka Nerd Font&amp;#34; ]; serif = [ &amp;#34;Iosevka Etoile&amp;#34; ]; sansSerif = [ &amp;#34;Iosevka Aile&amp;#34; ]; }; }; fonts = with pkgs; [ (iosevka-bin.</description>
    </item>
    
    <item>
      <title>config.el</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/texteditors/emacs/doom/config.el/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/texteditors/emacs/doom/config.el/</guid>
      <description>;;; $DOOMDIR/config.el -*- lexical-binding: t; -*- ;; Place your private configuration here! Remember, you do not need to run &#39;doom ;; sync&#39; after modifying this file! ;; Some functionality uses this to identify you, e.g. GPG configuration, email ;; clients, file templates and snippets. (setq user-full-name &amp;quot;Wyatt Osterling&amp;quot; user-mail-address &amp;quot;wyatt.osterling@hotmail.com&amp;quot;) ;; Doom exposes five (optional) variables for controlling fonts in Doom. Here ;; are the three important ones: ;; ;; + `doom-font&#39; ;; + `doom-variable-pitch-font&#39; ;; + `doom-big-font&#39; -- used for `doom-big-font-mode&#39;; use this for ;; presentations or streaming.</description>
    </item>
    
    <item>
      <title>config.nix</title>
      <link>https://wizardwatch.net/projects/nixos/common/config.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/common/config.nix/</guid>
      <description>{ config, pkgs, ...}:{ # Enable unstable nix so that I can use flakes. nix = { package = pkgs.nixUnstable; extraOptions = &amp;#39;&amp;#39; experimental-features = nix-command flakes restrict-eval = false &amp;#39;&amp;#39;; }; networking.nameservers = [ &amp;#34;192.168.1.146&amp;#34; &amp;#34;1.1.1.1&amp;#34; ]; networking.defaultGateway = &amp;#34;192.168.1.1&amp;#34;; networking.wireguard.enable = true; time.timeZone = &amp;#34;America/New_York&amp;#34;; services.openssh.enable = true; services.openssh.passwordAuthentication = false; services.dbus.packages = [ pkgs.gnome3.dconf ]; services = { transmission = { enable = true; port = 9091; }; }; } </description>
    </item>
    
    <item>
      <title>config.py</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/qtile/config.py/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/qtile/config.py/</guid>
      <description>from typing import List # noqa: F401 from libqtile import bar, layout, widget, hook from libqtile.config import Click, Drag, Group, Key, Screen, Match from libqtile.lazy import lazy mod = &amp;quot;mod4&amp;quot; terminal = &amp;quot;kitty&amp;quot; primary = [mod] secondary = [mod, &amp;quot;shift&amp;quot;] tertiary = [mod, &amp;quot;control&amp;quot;, &amp;quot;shift&amp;quot;] keys = [ Key(primary,	&amp;quot;n&amp;quot;,	lazy.spawncmd(),), Key(primary,	&amp;quot;Tab&amp;quot;,	lazy.layout.next(),), Key(primary,	&amp;quot;Return&amp;quot;,	lazy.spawn(terminal),), # moves the focus Key(primary,	&amp;quot;s&amp;quot;,	lazy.layout.down(),), Key(primary,	&amp;quot;w&amp;quot;, lazy.layout.up(),), Key(primary,	&amp;quot;a&amp;quot;, lazy.layout.left(),), Key(primary, &amp;quot;d&amp;quot;, lazy.</description>
    </item>
    
    <item>
      <title>Cryptography</title>
      <link>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/crypto/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/crypto/</guid>
      <description>Public-Key Cryptosystems Okamoto-Uchiyama The Okamoto-Uchiyama cryptosystem is homomorphic and malleable. cryptosystem.
 Choose random primes $p$ and $q$ Compute $n=p^2q$ Choose $g\in{2\ldots n-1}$ such that $g^{p-1} \not\equiv 1\bmod p^2$ Compute $h=g^n\bmod n$  Encryption  Choose message $m&amp;lt;p$ Chose integer $r\in{1\ldots n-1}$ at random Compute ciphertext $c=g^mh^r\bmod n$  Decryption  Define $L(x)=\frac{x-1}{p}$ $m=\frac{L(c^{p-1}\bmod p^2)}{L(g^{p-1}\bmod p^2)}\bmod p$  RSA Rivest-Shamir-Adleman
 Choose random primes $p$ and $q$ Compute $n=pq$ Compute [Euler&#39;s totient](algo.</description>
    </item>
    
    <item>
      <title>custom.el</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/texteditors/emacs/doom/custom.el/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/texteditors/emacs/doom/custom.el/</guid>
      <description>(put &#39;upcase-region &#39;disabled nil) </description>
    </item>
    
    <item>
      <title>default.nix</title>
      <link>https://wizardwatch.net/projects/nixos/overlays/default.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/overlays/default.nix/</guid>
      <description>_: pkgs: rec { haskellPackages = pkgs.haskellPackages.override (old: { overrides = pkgs.lib.composeExtensions (old.overrides or (_: _: { })) (self: super: rec { wizardwatch-xmonad = self.callCabal2nix &amp;#34;wizardwatch-xmonad&amp;#34; (pkgs.lib.sourceByRegex ../users/wyatt/dotfiles/x/xmonad [ &amp;#34;xmonad.hs&amp;#34; &amp;#34;wizardwatch-xmonad.cabal&amp;#34; ]) { }; }); }); } </description>
    </item>
    
    <item>
      <title>emacs.nix</title>
      <link>https://wizardwatch.net/projects/nixos/common/emacs.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/common/emacs.nix/</guid>
      <description>{config, pkgs, ...}:{ environment.systemPackages = with pkgs; [ ## the text editor of the past, today emacs # for emacs pdfs poppler # for emacs latex texlive.combined.scheme-full # for emacs github/magit forge gnupg # for decrypting .authinfo pinentry-emacs pinentry ## emacs and other stuff dependency. sqlite ]; # # pinentry # programs.gnupg.agent = { enable = true; enableSSHSupport = true; pinentryFlavor = &amp;#34;emacs&amp;#34;; }; } </description>
    </item>
    
    <item>
      <title>eww.scss</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/other/eww/eww.scss/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/other/eww/eww.scss/</guid>
      <description>* { all: unset; //Unsets everything so you can style everything from scratch } window { //border-radius: 20px; color: #ffffff; background-color: #282a36; font-family: JetBrains Mono; font-size: 18px; } .sidestuff { //background-color: #252221; padding: 0px 50px; } .workspaces { padding: 0px 50px; } .time button { //all: unset; min-height: 45px; } .workspaces { min-width: 480px; min-height: 15px; } .workspaces button { //border-style: solid; //border-width: 1px; transition-property: background-color; transition-duration: 0.5s; } .</description>
    </item>
    
    <item>
      <title>eww.yuck</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/other/eww/eww.yuck/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/other/eww/eww.yuck/</guid>
      <description>(defwindow time :monitor 0 :windowtype &amp;quot;dock&amp;quot; :exclusive &amp;quot;true&amp;quot; :reserve (struts :side &amp;quot;top&amp;quot; :distance &amp;quot;45px&amp;quot;) :geometry (geometry :x &amp;quot;0px&amp;quot; :y &amp;quot;0px&amp;quot; :width &amp;quot;100%&amp;quot; :height &amp;quot;10px&amp;quot; :anchor &amp;quot;top center&amp;quot;) (windowtitle) ) (defpoll time :interval &amp;quot;1s&amp;quot; &amp;quot;date &#39;+%H:%M:%S %b %d, %Y&#39;&amp;quot;) (defwidget sidestuff [] (box :class &amp;quot;sidestuff&amp;quot; :orientation &amp;quot;h&amp;quot; :halign &amp;quot;end&amp;quot; time ) ) (defwidget workspaces [] (box :class &amp;quot;workspaces&amp;quot; :orientation &amp;quot;h&amp;quot; :space-evenly true :halign &amp;quot;start&amp;quot; :spacing 10 (button :onclick &amp;quot;wmctrl -s 0&amp;quot; 1) (button :onclick &amp;quot;wmctrl -s 1&amp;quot; 2) (button :onclick &amp;quot;wmctrl -s 2&amp;quot; 3) (button :onclick &amp;quot;wmctrl -s 3&amp;quot; 4) (button :onclick &amp;quot;wmctrl -s 4&amp;quot; 5) (button :onclick &amp;quot;wmctrl -s 5&amp;quot; 6) (button :onclick &amp;quot;wmctrl -s 6&amp;quot; 7) (button :onclick &amp;quot;wmctrl -s 7&amp;quot; 8) (button :onclick &amp;quot;wmctrl -s 8&amp;quot; 9))) (defwidget middlestuff [] (box :class &amp;quot;middlestuff&amp;quot; :halign &amp;quot;center&amp;quot; ) ) (defwidget windowtitle [] (box :orientation &amp;quot;horizontal&amp;quot; (workspaces) (middlestuff) (sidestuff)	) ) </description>
    </item>
    
    <item>
      <title>flake.lock</title>
      <link>https://wizardwatch.net/projects/nixos/flake.lock/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/flake.lock/</guid>
      <description>{ &amp;quot;nodes&amp;quot;: { &amp;quot;doom-emacs&amp;quot;: { &amp;quot;flake&amp;quot;: false, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1626604817, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-z+dvjB02cHU+VQ5EMkzqSdX817PZar9AkmmfK27q0vo=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;hlissner&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;doom-emacs&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;46732c0adaef147144418f9f284ca6b1183ab96f&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;hlissner&amp;quot;, &amp;quot;ref&amp;quot;: &amp;quot;develop&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;doom-emacs&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;doom-snippets&amp;quot;: { &amp;quot;flake&amp;quot;: false, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1625547004, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-V+ytAjB4ZZ+5dJJAu1OY7SbnqrokX5PVBWs0AsgQ8Vs=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;hlissner&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;doom-snippets&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;5c0eb5bd70f035cefb981c2ce64f4367498bdda6&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;hlissner&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;doom-snippets&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;emacs-overlay&amp;quot;: { &amp;quot;flake&amp;quot;: false, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1626972035, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-YhBtnKmLDYiEzP5ZEMEQMg6oMP5EV+ToCkku7ZYfL+A=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;nix-community&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;emacs-overlay&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;be04b45efb35db58e6ac6aa86b84f850c85b5dfe&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;nix-community&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;emacs-overlay&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;emacs-so-long&amp;quot;: { &amp;quot;flake&amp;quot;: false, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1575031854, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-xIa5zO0ZaToDrec1OFjBK6l39AbA4l/CE4LInVu2hi0=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;hlissner&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;emacs-so-long&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;ed666b0716f60e8988c455804de24b55919e71ca&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;hlissner&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;emacs-so-long&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;evil-markdown&amp;quot;: { &amp;quot;flake&amp;quot;: false, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1626852210, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-HBBuZ1VWIn6kwK5CtGIvHM1+9eiNiKPH0GUsyvpUVN8=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;Somelauw&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;evil-markdown&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;8e6cc68af83914b2fa9fd3a3b8472573dbcef477&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;Somelauw&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;evil-markdown&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;evil-org-mode&amp;quot;: { &amp;quot;flake&amp;quot;: false, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1607203864, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-JxwqVYDN6OIJEH15MVI6XOZAPtUWUhJQWHyzcrUvrFg=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;hlissner&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;evil-org-mode&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;a9706da260c45b98601bcd72b1d2c0a24a017700&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;hlissner&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;evil-org-mode&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;evil-quick-diff&amp;quot;: { &amp;quot;flake&amp;quot;: false, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1575189609, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-oGzl1ayW9rIuq0haoiFS7RZsS8NFMdEA7K1BSozgnJU=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;rgrinberg&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;evil-quick-diff&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;69c883720b30a892c63bc89f49d4f0e8b8028908&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;rgrinberg&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;evil-quick-diff&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;eww&amp;quot;: { &amp;quot;inputs&amp;quot;: { &amp;quot;fenix&amp;quot;: &amp;quot;fenix&amp;quot;, &amp;quot;flake-compat&amp;quot;: &amp;quot;flake-compat&amp;quot;, &amp;quot;flake-utils&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;naersk&amp;quot;: &amp;quot;naersk&amp;quot;, &amp;quot;nixpkgs&amp;quot;: &amp;quot;nixpkgs_3&amp;quot; }, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1639928775, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-VntDl7JaIfvn3pd+2uDocnXFRkPnQQbRkYDn4XWeC5o=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;elkowar&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;eww&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;106106ade31e7cc669f2ae53f24191cd0a683c39&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;elkowar&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;eww&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;explain-pause-mode&amp;quot;: { &amp;quot;flake&amp;quot;: false, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1595842060, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-++znrjiDSx+cy4okFBBXUBkRFdtnE2x+trkmqjB3Njs=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;lastquestion&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;explain-pause-mode&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;2356c8c3639cbeeb9751744dbe737267849b4b51&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;lastquestion&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;explain-pause-mode&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;fenix&amp;quot;: { &amp;quot;inputs&amp;quot;: { &amp;quot;nixpkgs&amp;quot;: &amp;quot;nixpkgs&amp;quot;, &amp;quot;rust-analyzer-src&amp;quot;: &amp;quot;rust-analyzer-src&amp;quot; }, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1630895391, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-yokHZl7RvKfvmAmouI0Zr5x4SKhYvukRcU8XzRk7yf0=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;nix-community&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;fenix&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;3893e32c15e2ba4999510de67023a31d6f0e8b6e&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;nix-community&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;fenix&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;flake-compat&amp;quot;: { &amp;quot;flake&amp;quot;: false, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1627913399, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-hY8g6H2KFL8ownSiFeMOjwPC8P0ueXpCVEbxgda3pko=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;edolstra&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-compat&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;12c64ca55c1014cdc1b16ed5a804aa8576601ff2&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;edolstra&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-compat&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;flake-compat_2&amp;quot;: { &amp;quot;flake&amp;quot;: false, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1627913399, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-hY8g6H2KFL8ownSiFeMOjwPC8P0ueXpCVEbxgda3pko=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;edolstra&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-compat&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;12c64ca55c1014cdc1b16ed5a804aa8576601ff2&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;edolstra&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-compat&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;flake-utils&amp;quot;: { &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1629481132, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-JHgasjPR0/J1J3DRm4KxM4zTyAj4IOJY8vIl75v/kPI=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;997f7efcb746a9c140ce1f13c72263189225f482&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;flake-utils_2&amp;quot;: { &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1638122382, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-sQzZzAbvKEqN9s0bzWuYmRaA03v40gaJ4+iL1LXjaeI=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;74f7e4319258e287b0f9cb95426c9853b282730b&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;flake-utils_3&amp;quot;: { &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1629481132, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-JHgasjPR0/J1J3DRm4KxM4zTyAj4IOJY8vIl75v/kPI=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;997f7efcb746a9c140ce1f13c72263189225f482&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;flake-utils_4&amp;quot;: { &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1623875721, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;f7e004a55b120c02ecb6219596820fcd32ca8772&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;flake-utils_5&amp;quot;: { &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1638122382, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-sQzZzAbvKEqN9s0bzWuYmRaA03v40gaJ4+iL1LXjaeI=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;74f7e4319258e287b0f9cb95426c9853b282730b&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;flake-utils_6&amp;quot;: { &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1638122382, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-sQzZzAbvKEqN9s0bzWuYmRaA03v40gaJ4+iL1LXjaeI=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;74f7e4319258e287b0f9cb95426c9853b282730b&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;home-manager&amp;quot;: { &amp;quot;inputs&amp;quot;: { &amp;quot;nixpkgs&amp;quot;: [ &amp;quot;nixpkgs&amp;quot; ] }, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1641094125, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-BJX5rXdepod87suqr6Aaee5Dx5+jY13Xx2JfiBYybQc=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;nix-community&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;home-manager&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;7c0dc519e15662255f6f476de31de2f41d82dbef&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;nix-community&amp;quot;, &amp;quot;ref&amp;quot;: &amp;quot;master&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;home-manager&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;naersk&amp;quot;: { &amp;quot;inputs&amp;quot;: { &amp;quot;nixpkgs&amp;quot;: &amp;quot;nixpkgs_2&amp;quot; }, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1629707199, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-sGxlmfp5eXL5sAMNqHSb04Zq6gPl+JeltIZ226OYN0w=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;nmattia&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;naersk&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;df71f5e4babda41cd919a8684b72218e2e809fa9&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;nmattia&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;naersk&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;neovim-flake&amp;quot;: { &amp;quot;inputs&amp;quot;: { &amp;quot;flake-utils&amp;quot;: &amp;quot;flake-utils_3&amp;quot;, &amp;quot;nixpkgs&amp;quot;: &amp;quot;nixpkgs_4&amp;quot; }, &amp;quot;locked&amp;quot;: { &amp;quot;dir&amp;quot;: &amp;quot;contrib&amp;quot;, &amp;quot;lastModified&amp;quot;: 1640977835, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-m2jkhz0087dZeRIA3oL/JmGv9PD06psnFhKPXku8jto=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;neovim&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;neovim&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;b218d02c442ebacba1fdef0cca9e40315a46aedd&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;dir&amp;quot;: &amp;quot;contrib&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;neovim&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;neovim&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;neovim-nightly&amp;quot;: { &amp;quot;inputs&amp;quot;: { &amp;quot;flake-compat&amp;quot;: &amp;quot;flake-compat_2&amp;quot;, &amp;quot;neovim-flake&amp;quot;: &amp;quot;neovim-flake&amp;quot;, &amp;quot;nixpkgs&amp;quot;: &amp;quot;nixpkgs_5&amp;quot; }, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1641024848, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-N34WcRPOJKGa6gPNIOBTkfTlJUj9ku1GgTDn27FhOvw=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;nix-community&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;neovim-nightly-overlay&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;c067136c899966364e66dc0471dc8279948fe7d3&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;nix-community&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;neovim-nightly-overlay&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;nix-doom-emacs&amp;quot;: { &amp;quot;inputs&amp;quot;: { &amp;quot;doom-emacs&amp;quot;: &amp;quot;doom-emacs&amp;quot;, &amp;quot;doom-snippets&amp;quot;: &amp;quot;doom-snippets&amp;quot;, &amp;quot;emacs-overlay&amp;quot;: &amp;quot;emacs-overlay&amp;quot;, &amp;quot;emacs-so-long&amp;quot;: &amp;quot;emacs-so-long&amp;quot;, &amp;quot;evil-markdown&amp;quot;: &amp;quot;evil-markdown&amp;quot;, &amp;quot;evil-org-mode&amp;quot;: &amp;quot;evil-org-mode&amp;quot;, &amp;quot;evil-quick-diff&amp;quot;: &amp;quot;evil-quick-diff&amp;quot;, &amp;quot;explain-pause-mode&amp;quot;: &amp;quot;explain-pause-mode&amp;quot;, &amp;quot;flake-utils&amp;quot;: &amp;quot;flake-utils_4&amp;quot;, &amp;quot;nix-straight&amp;quot;: &amp;quot;nix-straight&amp;quot;, &amp;quot;nixpkgs&amp;quot;: &amp;quot;nixpkgs_6&amp;quot;, &amp;quot;nose&amp;quot;: &amp;quot;nose&amp;quot;, &amp;quot;ob-racket&amp;quot;: &amp;quot;ob-racket&amp;quot;, &amp;quot;org&amp;quot;: &amp;quot;org&amp;quot;, &amp;quot;org-contrib&amp;quot;: &amp;quot;org-contrib&amp;quot;, &amp;quot;org-yt&amp;quot;: &amp;quot;org-yt&amp;quot;, &amp;quot;php-extras&amp;quot;: &amp;quot;php-extras&amp;quot;, &amp;quot;revealjs&amp;quot;: &amp;quot;revealjs&amp;quot;, &amp;quot;rotate-text&amp;quot;: &amp;quot;rotate-text&amp;quot; }, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1627398156, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-Ru1aV3NuIFXAsvUE3de8KR7xDZOo1GCBJdsWKJn+Ebw=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;vlaci&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;nix-doom-emacs&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;fee14d217b7a911aad507679dafbeaa8c1ebf5ff&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;vlaci&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;nix-doom-emacs&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;nix-straight&amp;quot;: { &amp;quot;flake&amp;quot;: false, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1621543597, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-E/m2Hrw2og//CfOCOWe2yapYC01Tqhozn4YMPYJsC3o=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;vlaci&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;nix-straight.</description>
    </item>
    
    <item>
      <title>flake.lock</title>
      <link>https://wizardwatch.net/projects/nixos/packages/wizardwatch_utils/flake.lock/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/packages/wizardwatch_utils/flake.lock/</guid>
      <description>{ &amp;quot;nodes&amp;quot;: { &amp;quot;flake-utils&amp;quot;: { &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1638122382, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-sQzZzAbvKEqN9s0bzWuYmRaA03v40gaJ4+iL1LXjaeI=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;74f7e4319258e287b0f9cb95426c9853b282730b&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;nixpkgs&amp;quot;: { &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1637841632, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-QYqiKHdda0EOnLGQCHE+GluD/Lq2EJj4hVTooPM55Ic=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;NixOS&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;nixpkgs&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;73369f8d0864854d1acfa7f1e6217f7d6b6e3fa1&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;id&amp;quot;: &amp;quot;nixpkgs&amp;quot;, &amp;quot;ref&amp;quot;: &amp;quot;nixos-unstable&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;indirect&amp;quot; } }, &amp;quot;root&amp;quot;: { &amp;quot;inputs&amp;quot;: { &amp;quot;flake-utils&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;nixpkgs&amp;quot;: &amp;quot;nixpkgs&amp;quot; } } }, &amp;quot;root&amp;quot;: &amp;quot;root&amp;quot;, &amp;quot;version&amp;quot;: 7 } </description>
    </item>
    
    <item>
      <title>flake.lock</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/xmonad/flake.lock/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/xmonad/flake.lock/</guid>
      <description>{ &amp;quot;nodes&amp;quot;: { &amp;quot;flake-utils&amp;quot;: { &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1631561581, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-3VQMV5zvxaVLvqqUrNz3iJelLw30mIVSfZmAaauM3dA=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;7e5bf3925f6fbdfaf50a2a7ca0be2879c4261d19&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;flake-utils_2&amp;quot;: { &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1631561581, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-3VQMV5zvxaVLvqqUrNz3iJelLw30mIVSfZmAaauM3dA=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;7e5bf3925f6fbdfaf50a2a7ca0be2879c4261d19&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;flake-utils_3&amp;quot;: { &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1631561581, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-3VQMV5zvxaVLvqqUrNz3iJelLw30mIVSfZmAaauM3dA=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;7e5bf3925f6fbdfaf50a2a7ca0be2879c4261d19&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;flake-utils_4&amp;quot;: { &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1631561581, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-3VQMV5zvxaVLvqqUrNz3iJelLw30mIVSfZmAaauM3dA=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;rev&amp;quot;: &amp;quot;7e5bf3925f6fbdfaf50a2a7ca0be2879c4261d19&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; }, &amp;quot;original&amp;quot;: { &amp;quot;owner&amp;quot;: &amp;quot;numtide&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;flake-utils&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;github&amp;quot; } }, &amp;quot;git-ignore-nix&amp;quot;: { &amp;quot;inputs&amp;quot;: { &amp;quot;nixpkgs&amp;quot;: &amp;quot;nixpkgs_2&amp;quot; }, &amp;quot;locked&amp;quot;: { &amp;quot;lastModified&amp;quot;: 1626413882, &amp;quot;narHash&amp;quot;: &amp;quot;sha256-ZHw1YVsrs7rG9jPEH0ZabbbCTdnVr48FAwK6GCQPSF4=&amp;quot;, &amp;quot;owner&amp;quot;: &amp;quot;IvanMalison&amp;quot;, &amp;quot;repo&amp;quot;: &amp;quot;gitignore.</description>
    </item>
    
    <item>
      <title>flake.nix</title>
      <link>https://wizardwatch.net/projects/nixos/flake.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/flake.nix/</guid>
      <description>{ description = &amp;#34;My system conf&amp;#34;; inputs = rec { # set the channel nixpkgs.url = &amp;#34;nixpkgs/nixos-unstable&amp;#34;; # enable home-manager home-manager.url = &amp;#34;github:nix-community/home-manager/master&amp;#34;; # tell home manager to use the nixpkgs channel set above. home-manager.inputs.nixpkgs.follows = &amp;#34;nixpkgs&amp;#34;; # master channel nixmaster.url = &amp;#34;github:NixOS/nixpkgs&amp;#34;; neovim-nightly.url = &amp;#34;github:nix-community/neovim-nightly-overlay&amp;#34;; eww.url = &amp;#34;github:elkowar/eww&amp;#34;; nix-doom-emacs.url = &amp;#34;github:vlaci/nix-doom-emacs&amp;#34;; # custom package wizardwatch_utils = { url = &amp;#34;path:./packages/wizardwatch_utils&amp;#34;; inputs.nixpkgs.follows = &amp;#34;nixpkgs&amp;#34;; }; xtodoc = { url = &amp;#34;github:wizardwatch/xtodoc&amp;#34;; inputs.</description>
    </item>
    
    <item>
      <title>flake.nix</title>
      <link>https://wizardwatch.net/projects/nixos/packages/wizardwatch_utils/flake.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/packages/wizardwatch_utils/flake.nix/</guid>
      <description>{ description = &amp;#34;Collection of utilities meant to be used with my NixOS configuration.&amp;#34;; inputs = { nixpkgs.url = &amp;#34;nixpkgs/nixos-unstable&amp;#34;; flake-utils.url = &amp;#34;github:numtide/flake-utils&amp;#34;; }; outputs = { nixpkgs, flake-utils, ... }: flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; }; wut = (with pkgs; stdenv.mkDerivation { pname = &amp;#34;wut&amp;#34;; version = &amp;#34;0.0.2&amp;#34;; src = ./.; installPhase = &amp;#39;&amp;#39; mkdir -p $out/bin mv ./wut.rb $out/bin/wut chmod +x $out/bin/wut &amp;#39;&amp;#39;; }); in rec { defaultApp = flake-utils.</description>
    </item>
    
    <item>
      <title>flake.nix</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/xmonad/flake.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/xmonad/flake.nix/</guid>
      <description>{ inputs = { flake-utils.url = &amp;#34;github:numtide/flake-utils&amp;#34;; xmonad = { url = &amp;#34;github:xmonad/xmonad&amp;#34;; inputs.nixpkgs.follows = &amp;#34;nixpkgs&amp;#34;; }; xmonad-contrib = { url = &amp;#34;github:xmonad/xmonad-contrib&amp;#34;; inputs.nixpkgs.follows = &amp;#34;nixpkgs&amp;#34;; }; }; outputs = { self, flake-utils, nixpkgs, xmonad, xmonad-contrib }: let overlays = [ xmonad.overlay xmonad-contrib.overlay ]; in flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system overlays; config.allowBroken = true; }; in rec { devShell = pkgs.haskellPackages.shellFor { packages = p: [ p.</description>
    </item>
    
    <item>
      <title>hardware-configuration.nix</title>
      <link>https://wizardwatch.net/projects/nixos/machines/wizardwatch/hardware-configuration.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/machines/wizardwatch/hardware-configuration.nix/</guid>
      <description># Do not modify this file! It was generated by ‘nixos-generate-config’ # and may be overwritten by future invocations. Please make changes # to /etc/nixos/configuration.nix instead. { config, lib, pkgs, modulesPath, ... }: { imports = [ (modulesPath + &amp;#34;/installer/scan/not-detected.nix&amp;#34;) ]; boot.initrd.availableKernelModules = [ &amp;#34;xhci_pci&amp;#34; &amp;#34;ahci&amp;#34; &amp;#34;nvme&amp;#34; &amp;#34;usb_storage&amp;#34; &amp;#34;usbhid&amp;#34; &amp;#34;sd_mod&amp;#34; ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ &amp;#34;kvm-intel&amp;#34; ]; boot.extraModulePackages = [ ]; fileSystems.&amp;#34;/&amp;#34; = { device = &amp;#34;/dev/disk/by-uuid/aa0f79a2-0dc1-488e-9cb5-eae67db299b7&amp;#34;; fsType = &amp;#34;ext4&amp;#34;; }; fileSystems.</description>
    </item>
    
    <item>
      <title>hsctf.nix</title>
      <link>https://wizardwatch.net/projects/nixos/common/hsctf.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/common/hsctf.nix/</guid>
      <description>{ config, pkgs, ...}: { environment.systemPackages = with pkgs; [ ## HSCTF hping nmap masscan openvpn curlFull dig mitmproxy p0f hcxdumptool hcxtools bully aircrack-ng smbclient openssl hashcat john file exiftool hexdump binutils gdb-multitarget burpsuite zap #ruby perl python2Full thc-hydra gobuster rsync moreutils sqlmap metasploit cutter exploitdb tldr zsteg stegseek sonic-visualiser sage mysql80 sqlite ]; } </description>
    </item>
    
    <item>
      <title>hw_config.nix</title>
      <link>https://wizardwatch.net/projects/nixos/machines/pc1/hw_config.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/machines/pc1/hw_config.nix/</guid>
      <description># Do not modify this file! It was generated by ‘nixos-generate-config’ # and may be overwritten by future invocations. Please make changes # to /etc/nixos/configuration.nix instead. { config, lib, pkgs, modulesPath, ... }: { imports = [ (modulesPath + &amp;#34;/installer/scan/not-detected.nix&amp;#34;) ]; boot.initrd.availableKernelModules = [ &amp;#34;xhci_pci&amp;#34; &amp;#34;nvme&amp;#34; &amp;#34;usb_storage&amp;#34; &amp;#34;sd_mod&amp;#34; &amp;#34;rtsx_pci_sdmmc&amp;#34; ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ &amp;#34;kvm-intel&amp;#34; ]; boot.extraModulePackages = [ ]; fileSystems.&amp;#34;/&amp;#34; = { device = &amp;#34;/dev/disk/by-uuid/76372f27-80e0-49ea-b611-100fff2d1fc4&amp;#34;; fsType = &amp;#34;ext4&amp;#34;; }; fileSystems.</description>
    </item>
    
    <item>
      <title>init</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/wayland/init/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/wayland/init/</guid>
      <description>#!/bin/sh # Modifier Options mod=&amp;quot;Mod1&amp;quot; primary=$mod secondary=&amp;quot;$primary+Shift&amp;quot; tertiary=&amp;quot;$secondary+Control&amp;quot; # ScratchPads MusicTag=$((1 &amp;lt;&amp;lt; 10 )) TopTag=11 # Launch on startup riverctl spawn &#39;foot ncmpcpp&#39; riverctl spawn foot riverctl spawn firefox #riverctl spawn dbus-daemon --session --address=unix:path=$XDG_RUNTIME_DIR/bus riverctl spawn mako riverctl spawn &#39;eww daemon&#39; riverctl spawn &#39;eww open time&#39; # Primary bindings riverctl map normal $primary Return spawn foot riverctl map normal $primary Q close riverctl map normal $primary N spawn fuzzel riverctl map normal Mod4 E exit riverctl map normal $primary Tab Return zoom riverctl map normal $primary M toggle-focused-tags $MusicTag riverctl map normal $primary Tab zoom # TODO: Bind to scroll wheel #riverctl map normal $mod focus-view next #riverctl map normal $mod E focus-view previous # Secondary Bindings riverctl map normal $secondary M set-view-tags $MusicTag # move/resize riverctl map-pointer normal $mod BTN_LEFT move-view riverctl map-pointer normal $mod BTN_RIGHT resize-view # toggle float/fullscreen riverctl map normal $mod Space toggle-float riverctl map normal $mod F toggle-fullscreen # multi-output TODO: Bind to jkl; riverctl map normal $mod Period focus-output next riverctl map normal $mod Comma focus-output previous riverctl map normal $mod+Shift Period send-to-output next riverctl map normal $mod+Shift Comma send-to-output previous # screenshots riverctl map normal $mod C spawn &#39;grim -g &amp;quot;$(slurp)&amp;quot; - | wl-copy&#39; riverctl map normal $secondary C spawn &#39;/etc/nixos/common/scripts/wlrootsScreen.</description>
    </item>
    
    <item>
      <title>init.el</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/texteditors/emacs/doom/init.el/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/texteditors/emacs/doom/init.el/</guid>
      <description>;;; init.el -*- lexical-binding: t; -*- ;; This file controls what Doom modules are enabled and what order they load ;; in. Remember to run &#39;doom sync&#39; after modifying it! ;; NOTE Press &#39;SPC h d h&#39; (or &#39;C-h d h&#39; for non-vim users) to access Doom&#39;s ;; documentation. There you&#39;ll find a &amp;quot;Module Index&amp;quot; link where you&#39;ll find ;; a comprehensive list of Doom&#39;s modules and what flags they support.</description>
    </item>
    
    <item>
      <title>init.el</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/texteditors/emacs/init.el/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/texteditors/emacs/init.el/</guid>
      <description>;; ;; Package Manager ;; (require &#39;package) (setq package-archives &#39;((&amp;quot;melpa&amp;quot; . &amp;quot;https://melpa.org/packages/&amp;quot;) (&amp;quot;org&amp;quot; . &amp;quot;https://orgmode.org/elpa/&amp;quot;) (&amp;quot;elpa&amp;quot; . &amp;quot;https://elpa.gnu.org/packages/&amp;quot;))) (package-initialize) (unless package-archive-contents (package-refresh-contents)) ;; ;; Use Package ;; (unless ( package-installed-p &#39;use-package) (package-install &#39;use-package)) (require &#39;use-package) (setq use-package-always-ensure t) ;; ;; Packages ;; ;; selctrum (use-package selectrum) (selectrum-mode +1) ;; evil (use-package evil) (require &#39;evil) (evil-mode 1) ;; undo-tree (use-package undo-tree) (require &#39;undo-tree) ;; buffer names (setq frame-title-format &#39;((:eval (if (buffer-file-name) (abbreviate-file-name (buffer-file-name)) &amp;quot;%b&amp;quot;)) (:eval (if (buffer-modified-p) &amp;quot; •&amp;quot;)) &amp;quot; - Emacs&amp;quot;) ) (defvar ww/original-frame-title-format frame-title-format &amp;quot;The original frame title format&amp;quot;) (setq frame-title-format &#39;(:eval (if (eq major-mode &#39;dired-mode) &amp;quot;dired&amp;quot; ww/original-frame-title-format))) ;; dired (use-package dired-subtree :config (bind-keys :map dired-mode-map (&amp;quot;&amp;lt;right&amp;gt;&amp;quot; .</description>
    </item>
    
    <item>
      <title>kanshi.nix</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/wayland/kanshi.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/wayland/kanshi.nix/</guid>
      <description>{pkgs, config, ...}: { services.kanshi = { enable = true; systemdTarget = &amp;#34;&amp;#34;; profiles = { normal = { outputs = [ #{ # criteria = &amp;#34;DP-2&amp;#34;; # status = &amp;#34;disable&amp;#34;; #} { criteria = &amp;#34;HDMI-A-1&amp;#34;; position = &amp;#34;900,1440&amp;#34;; } ]; }; }; }; } </description>
    </item>
    
    <item>
      <title>lsp.nix</title>
      <link>https://wizardwatch.net/projects/nixos/common/lsp.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/common/lsp.nix/</guid>
      <description>{config, pkgs, ...}:{ environment.systemPackages = with pkgs; [ rnix-lsp ]; } </description>
    </item>
    
    <item>
      <title>main.nix</title>
      <link>https://wizardwatch.net/projects/nixos/machines/installer/main.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/machines/installer/main.nix/</guid>
      <description># 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’). { config, pkgs, ... }: { imports = [ ../../common/common.nix ]; # List packages installed in system profile. To search, run: # $ nix search wget users.users.installer = { isNormalUser = true; extraGroups = [ &amp;#34;wheel&amp;#34; ]; password = &amp;#34;password&amp;#34;; }; services.</description>
    </item>
    
    <item>
      <title>main.nix</title>
      <link>https://wizardwatch.net/projects/nixos/machines/pc1/main.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/machines/pc1/main.nix/</guid>
      <description>{ config, inputs, pkgs, fetchurl, eww, ... }: let publicKey = &amp;#34;AAAAB3NzaC1yc2EAAAADAQABAAABgQDBEq4NHUglnfwIZYT9dIV5RpYE5s+eGBs1DhX8ieoMXDDZDw/kRo9aeWqKlxElpVJepzHtydQdp73PPjYQT5BhuM7Nw/OKRIH2eEYN8BDqPsTJOVgnZ3287O8OStqnmCiBD2AmVEFuaxtnz5sL2PzsdAS20bvdnyig56TzGFkm3RnDrVfS+8RPbSmOzqVA9+xW4NeN/u1CA32VTfRjE696XpHG5Zg2ByCUGot0+yBLgkEj+RBiChg6rtnwga8QOgSLncZtjVS0WFH9u0lhoGBjOtL2qtMZkTVCLcjmE6Fa6Nd8igoss9JmbDQMh7McUxS1D9d4UE4Vh3IPAHAuaVbMvGNZ9upaye90Vt2PuejOXbnQ4dGKmlxq0wAMWx20uVbWiY1VimVeYPlMLeNOcVcHglVGkVChhgMEbDvsl6HcesfgR/tivHgPhXrkF9f2j80O53VIBWltqt2iz06xUiolQNYDYhq+HiXcQI11+gWRDrdgU5Q5B7OVWPVdXonTfkk=&amp;#34;; in { imports = [ ./hw_config.nix ../../common/common_desktop.nix ../../common/ruby.nix ]; # Use the systemd-boot EFI boot loader. This is required for uefi boot. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; # Set up` networking networking = { # While my first machine, my desktop, is named wizardwatch moving forward all machines will get a suffix, dc for desktop computer, pc for portable computer, and server.</description>
    </item>
    
    <item>
      <title>main.nix</title>
      <link>https://wizardwatch.net/projects/nixos/machines/wizardwatch/main.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/machines/wizardwatch/main.nix/</guid>
      <description>{ config, inputs, pkgs, fetchurl, eww, ... }: let publicKey = &amp;#34;AAAAB3NzaC1yc2EAAAADAQABAAABgQDBEq4NHUglnfwIZYT9dIV5RpYE5s+eGBs1DhX8ieoMXDDZDw/kRo9aeWqKlxElpVJepzHtydQdp73PPjYQT5BhuM7Nw/OKRIH2eEYN8BDqPsTJOVgnZ3287O8OStqnmCiBD2AmVEFuaxtnz5sL2PzsdAS20bvdnyig56TzGFkm3RnDrVfS+8RPbSmOzqVA9+xW4NeN/u1CA32VTfRjE696XpHG5Zg2ByCUGot0+yBLgkEj+RBiChg6rtnwga8QOgSLncZtjVS0WFH9u0lhoGBjOtL2qtMZkTVCLcjmE6Fa6Nd8igoss9JmbDQMh7McUxS1D9d4UE4Vh3IPAHAuaVbMvGNZ9upaye90Vt2PuejOXbnQ4dGKmlxq0wAMWx20uVbWiY1VimVeYPlMLeNOcVcHglVGkVChhgMEbDvsl6HcesfgR/tivHgPhXrkF9f2j80O53VIBWltqt2iz06xUiolQNYDYhq+HiXcQI11+gWRDrdgU5Q5B7OVWPVdXonTfkk=&amp;#34;; in { imports = [ ./hardware-configuration.nix ./unfree.nix ../../common/common_desktop.nix ../../common/ruby.nix ./xserver.nix ]; # Use the systemd-boot EFI boot loader. no touchy boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # The global useDHCP flag is deprecated, therefore explicitly set to false here. # Per-interface useDHCP will be mandatory in the future, so this generated config # replicates the default behaviour.</description>
    </item>
    
    <item>
      <title>main.nix</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/main.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/main.nix/</guid>
      <description>{pkgs, ...}:{ fonts.fontconfig = { enable = true; }; services.mpd = { enable = true; package = pkgs.mpd; dataDir = &amp;#34;/home/wyatt/.config/mpd&amp;#34;; musicDirectory = &amp;#34;/home/wyatt/Music&amp;#34;; extraConfig = &amp;#39;&amp;#39; audio_output { type &amp;#34;pulse&amp;#34; name &amp;#34;fakepipe&amp;#34; } audio_output { type &amp;#34;fifo&amp;#34; name &amp;#34;my_fifo&amp;#34; path &amp;#34;/tmp/mpd.fifo&amp;#34; format &amp;#34;44100:16:2&amp;#34; } &amp;#39;&amp;#39;; }; gtk = { enable = true; font.name = &amp;#34;Iosevka&amp;#34;; font.size = 14; theme.package = pkgs.dracula-theme; theme.name = &amp;#34;Dracula&amp;#34;; }; home.file = { river = { source = .</description>
    </item>
    
    <item>
      <title>main.nix</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/texteditors/emacs/main.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/texteditors/emacs/main.nix/</guid>
      <description>{pkgs, config, ...}: { programs.emacs = { enable = true; extraPackages = epkgs: [ (with epkgs.elpaPackages; [ auctex ] ) ]; }; home.file.emacs = { source = ./init.el; target = &amp;#34;./.config/emacs/init.el&amp;#34;; }; } </description>
    </item>
    
    <item>
      <title>main.nix</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/wayland/main.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/wayland/main.nix/</guid>
      <description>{pkgs, ...}:{ home.packages = with pkgs; [ fuzzel ]; imports = [ ./waybar.nix ./sway.nix ./mako.nix ./kanshi.nix ]; } </description>
    </item>
    
    <item>
      <title>main.nix</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/main.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/main.nix/</guid>
      <description>{ config, pkgs, ... }:{ home.packages = with pkgs; [ dmenu flameshot maim xclip i3lock ]; imports = [ ./qtile/main.nix #./xmonad/main.nix ]; } </description>
    </item>
    
    <item>
      <title>main.nix</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/qtile/main.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/qtile/main.nix/</guid>
      <description>{config, pkgs, ...}:{ home.file = { qtile = { source = ./config.py; target = &amp;#34;./.config/qtile/config.py&amp;#34;; }; }; } </description>
    </item>
    
    <item>
      <title>main.nix</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/xmonad/main.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/xmonad/main.nix/</guid>
      <description>{config, pkgs, inputs, ...}:{ xsession.windowManager.xmonad = { enable = true; #enableContribAndExtras = true; extraPackages = haskellPackages: [haskellPackages.xmonad-contrib]; config = ./xmonad.hs; package = pkgs.haskellPackages.wizardwatch-xmonad.defaultPackage.x86_64-linux; }; } </description>
    </item>
    
    <item>
      <title>mako.nix</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/wayland/mako.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/wayland/mako.nix/</guid>
      <description>{pkgs, config, ...}: { programs.mako = { enable = true; }; } </description>
    </item>
    
    <item>
      <title>ncmpcpp.nix</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/other/ncmpcpp.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/other/ncmpcpp.nix/</guid>
      <description>{pkgs, conf, ...}: { programs.ncmpcpp = { enable = true; package = pkgs.ncmpcpp.override { visualizerSupport = true; }; bindings = []; settings = { visualizer_data_source = &amp;#34;/tmp/mpd.fifo&amp;#34;; visualizer_output_name = &amp;#34;my_fifo&amp;#34;; visualizer_in_stereo = &amp;#34;yes&amp;#34;; visualizer_type = &amp;#34;ellipse&amp;#34;; visualizer_look = &amp;#34;+|&amp;#34;; }; }; } </description>
    </item>
    
    <item>
      <title>neovim.nix</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/texteditors/neovim.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/texteditors/neovim.nix/</guid>
      <description>{ config, lib, pkgs, ... }: let perlPkgs = with pkgs.perl532Packages; [ Appcpanminus ArchiveZip ]; in { home.packages = with pkgs; [ perl perl534Packages.Appcpanminus perl534Packages.ArchiveZip tree-sitter languagetool ]; programs.neovim = { enable = true; #package = pkgs.neovim-nightly/*.neovim-nightly*//*.neovim*/; withNodeJs = true; withPython3 = true; withRuby = true; coc = { enable = true; settings = { languageserver = { nix = { command = &amp;#34;rnix-lsp&amp;#34;; filetypes = [ &amp;#34;nix&amp;#34; ]; }; }; }; }; vimAlias = true; plugins = with pkgs.</description>
    </item>
    
    <item>
      <title>Network/wifi</title>
      <link>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/wifi/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/wifi/</guid>
      <description>Wired Equivalent Privacy WEP uses the Rivest Cipher 4 algorithm for packet encryption and the 32-bit version of the Cyclic Rendundancy Check to verify packet integrity.
Fluhrer, Mantin, Shamir Attack The FMS attack exploits WEP&#39;s use of weak initialization vectors (only 24 bits) with RC4.
Passive Initialization Vector Capture If a target network has enough traffic, an attacker can passively sniff packets until identical IV&#39;s are captured.
Packet Injection Packet injection can be used to generate more traffic in a WEP network, generating more IV&#39;s to capture.</description>
    </item>
    
    <item>
      <title>Open-Source Intelligence</title>
      <link>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/osint/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/osint/</guid>
      <description>Image Coordinate Identification The goal of image coordinate identification questions is to find where an image was taken and/or other details surrounding the circumstances of the image.
Reverse Image search Reverse image searching is one of the most bang-for-your-buck techniques in image coordinate identification. It also offers a launching point to find search terms that describe your image.
Here are some good reverse image search engines:
 Google&amp;mdash;especially for images taken from Google maps Yandex TinEye  Flags Self-explanatory&amp;mdash;images where you see a flag were probably taken in the place that uses said flag!</description>
    </item>
    
    <item>
      <title>packages.el</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/texteditors/emacs/doom/packages.el/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/texteditors/emacs/doom/packages.el/</guid>
      <description>;; -*- no-byte-compile: t; -*- ;;; $DOOMDIR/packages.el ;; To install a package with Doom you must declare them here and run &#39;doom sync&#39; ;; on the command line, then restart Emacs for the changes to take effect -- or ;; use &#39;M-x doom/reload&#39;. ;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror: ;(package! some-package) ;; To install a package directly from a remote git repo, you must specify a ;; `:recipe&#39;.</description>
    </item>
    
    <item>
      <title>packages.nix</title>
      <link>https://wizardwatch.net/projects/nixos/common/packages.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/common/packages.nix/</guid>
      <description>{config, pkgs, wizardwatch_utils, xtodoc, ...}: let my-python-packages = python-packages: with python-packages; [ pip setuptools wheel pillow numpy click pycrypto # other python packages you want ]; python-with-my-packages = pkgs.python39.withPackages my-python-packages; myKakoune = let config = pkgs.writeTextFile (rec { name = &amp;#34;kakrc.kak&amp;#34;; destination = &amp;#34;/share/kak/autoload/${name}&amp;#34;; text = &amp;#39;&amp;#39; set global ui_options ncurses_assistant=cat &amp;#39;&amp;#39;; }); in pkgs.kakoune.override { plugins = with pkgs.kakounePlugins; [ config connect-kak parinfer-rust kakoune-rainbow prelude-kak pandoc-kak ]; }; in{ environment.</description>
    </item>
    
    <item>
      <title>qtile.nix</title>
      <link>https://wizardwatch.net/projects/nixos/common/qtile.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/common/qtile.nix/</guid>
      <description>{ config, pkgs, ... }:{ services = { xserver = { windowManager.qtile.enable = true; }; }; } </description>
    </item>
    
    <item>
      <title>README.md</title>
      <link>https://wizardwatch.net/projects/nixos/packages/wizardwatch_utils/readme/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/packages/wizardwatch_utils/readme/</guid>
      <description># wizardwatch-utils A collection of utilities used in conjunction with my NixOS configuration. </description>
    </item>
    
    <item>
      <title>README.md</title>
      <link>https://wizardwatch.net/projects/nixos/readme/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/readme/</guid>
      <description># WizardWatch&#39;s fantastic NixOS config ## Text Editor I used to use Emacs but became frustrated at its performance and ability to integrate with external programs. I use Kakoune for a while and now use Neovim. ## Window Manager I prefer using wayland for its frame perfect drawing and my frustrations with x overall. I used sway for a very long time and was happy, but wanted to try a static tiling wm.</description>
    </item>
    
    <item>
      <title>Reverse Engineering</title>
      <link>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/re/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/re/</guid>
      <description>Basic Tools strings binwalk Debuggers and Decompilers GNU Debugger Cutter </description>
    </item>
    
    <item>
      <title>rifle.sh</title>
      <link>https://wizardwatch.net/projects/nixos/common/scripts/rifle.sh/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/common/scripts/rifle.sh/</guid>
      <description>set -l a read line set a $a $line fish ( kitty -e rifle &amp;quot;$a&amp;quot; &amp;amp; ) &amp;amp; </description>
    </item>
    
    <item>
      <title>ruby.nix</title>
      <link>https://wizardwatch.net/projects/nixos/common/ruby.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/common/ruby.nix/</guid>
      <description>{config, pkgs, ...}: { environment.systemPackages = with pkgs; [ (ruby_3_0.override{jitSupport = true;}) bundix rubyPackages_3_0.solargraph ]; } </description>
    </item>
    
    
    <item>
      <title>starship.nix</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/other/starship.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/other/starship.nix/</guid>
      <description>{pkgs, config, ...}: { programs.starship = { enable = true; enableZshIntegration = true; }; } </description>
    </item>
    
    <item>
      <title>Steganography</title>
      <link>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/stego/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/stego/</guid>
      <description> </description>
    </item>
    
    <item>
      <title>sway.nix</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/wayland/sway.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/wayland/sway.nix/</guid>
      <description>{pkgs, ...}: let menu = &amp;#34;wofi -f -S run -i&amp;#34;; modifier = &amp;#34;Mod4&amp;#34;; in { home.packages = with pkgs; [ wofi ]; home.sessionVariables = { MOZ_ENABLE_WAYLAND = &amp;#34;1&amp;#34;; MOZ_USE_XINPUT2 = &amp;#34;1&amp;#34;; XDG_SESSION_TYPE = &amp;#34;wayland&amp;#34;; XDG_CURRENT_DESKTOP = &amp;#34;sway&amp;#34;; }; wayland.windowManager.sway = { enable = true; wrapperFeatures.gtk = true; config = { window = { border = 4; commands = [ { command = &amp;#39;&amp;#39; move to workspace &amp;#34;discord&amp;#34; &amp;#39;&amp;#39;; criteria = { title = &amp;#34;.</description>
    </item>
    
    <item>
      <title>unfree.nix</title>
      <link>https://wizardwatch.net/projects/nixos/machines/wizardwatch/unfree.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/machines/wizardwatch/unfree.nix/</guid>
      <description>{pkgs, config, ...}: { nixpkgs.config = { allowUnfree = true; }; environment.systemPackages = with pkgs; [ nixmaster.discord-canary nixmaster.osu-lazer ]; #nixpkgs.config.packageOverrides = pkgs: { # steam = pkgs.steam.override { # nativeOnly = true; # }; #}; programs.steam.enable = true; hardware.steam-hardware.enable = true; } </description>
    </item>
    
    <item>
      <title>waybar.nix</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/wayland/waybar.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/wayland/waybar.nix/</guid>
      <description>{config, pkgs, ...}: { programs.waybar = { enable = true; settings = [{ modules = {}; modules-left = [&amp;#34;river/tags&amp;#34;]; }]; }; } </description>
    </item>
    
    <item>
      <title>web</title>
      <link>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/web/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/cs_and_ctf_knowledge-base/knowledge-base/web/</guid>
      <description></description>
    </item>
    
    <item>
      <title>wizardwatch-xmonad.cabal</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/xmonad/wizardwatch-xmonad.cabal/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/xmonad/wizardwatch-xmonad.cabal/</guid>
      <description>cabal-version: 2.4 name: wizardwatch-xmonad version: 0.1.0.0 common common default-language: Haskell2010 default-extensions: LambdaCase ghc-options: -Wall executable wizardwatch-xmonad import: common main-is: xmonad.hs build-depends: base, xmonad, xmonad-contrib, X11, containers, utf8-string, </description>
    </item>
    
    <item>
      <title>wlrootsScreen.sh</title>
      <link>https://wizardwatch.net/projects/nixos/common/scripts/wlrootsscreen.sh/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/common/scripts/wlrootsscreen.sh/</guid>
      <description>if [ ! -d /home/wyatt/Pictures/$(date +&amp;quot;%Y-%m-%d&amp;quot;) ]; then mkdir -p /home/wyatt/Pictures/$(date +&amp;quot;%Y-%m-%d&amp;quot;); fi grim -g &amp;quot;$(slurp)&amp;quot; - | tee /home/wyatt/Pictures/$(date +&amp;quot;%Y-%m-%d&amp;quot;)/$(date +&#39;%H%M%S-%Y-%m-%d.png&#39;) </description>
    </item>
    
    <item>
      <title>wut.rb</title>
      <link>https://wizardwatch.net/projects/nixos/packages/wizardwatch_utils/wut.rb/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/packages/wizardwatch_utils/wut.rb/</guid>
      <description>#! /usr/bin/env ruby # require_relative &amp;#34;wizardwatch_utils/version&amp;#34; require &amp;#39;socket&amp;#39; def update(input) hostname = Socket.gethostname if input[1] != hostname puts &amp;#39;THE HOSTNAME DOES NOT MATCH THE SELECTED CONFIGURATION.&amp;#39; puts &amp;#39;You entered &amp;#39; + input[1] + &amp;#39;, the hostname is &amp;#39; + hostname + &amp;#39;.&amp;#39; end puts &amp;#39;Are you sure you want to update this computer? yes/no&amp;#39; confirm = $stdin.gets if confirm.chomp == &amp;#39;yes&amp;#39; puts `sudo nixos-rebuild switch --flake \.\##{hostname}` end end def apply_user(input) puts &amp;#34;Do you want to install (update) user #{input[1]}this computer?</description>
    </item>
    
    <item>
      <title>xmonad.hs</title>
      <link>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/xmonad/xmonad.hs/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/users/wyatt/dotfiles/x/xmonad/xmonad.hs/</guid>
      <description>import XMonad import XMonad.Util.EZConfig import XMonad.Util.Ungrab import XMonad.Hooks.ManageDocks import XMonad.Layout.ThreeColumns import XMonad.Layout.Tabbed as Tabbed import XMonad.Layout.Master as Master import XMonad.Layout.Spacing (Border (Border), Spacing, spacingRaw) import XMonad.Layout.LayoutModifier (ModifiedLayout) backgroundColor = &amp;quot;#282a36&amp;quot; currentLineColor = &amp;quot;#44475a&amp;quot; selectionColor = &amp;quot;#44475a&amp;quot; foregroundColor = &amp;quot;#f8f8f2&amp;quot; commentColor = &amp;quot;#6272a4&amp;quot; cyanColor = &amp;quot;#8be9fd&amp;quot; greenColor = &amp;quot;#50fa7b&amp;quot; orangeColor = &amp;quot;#ffb86c&amp;quot; pinkColor = &amp;quot;#ff79c6&amp;quot; purpleColor = &amp;quot;#bd93f9&amp;quot; redColor = &amp;quot;#ff5555&amp;quot; yellowColor = &amp;quot;#f1fa8c&amp;quot; myNormalBorderColor = backgroundColor myFocusedBorderColor = currentLineColor mySpacing :: Integer -&amp;gt; l a -&amp;gt; XMonad.</description>
    </item>
    
    <item>
      <title>xserver.nix</title>
      <link>https://wizardwatch.net/projects/nixos/machines/pc1/xserver.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/machines/pc1/xserver.nix/</guid>
      <description>{ config, pkgs, ... }:{ services = { dbus = { enable = true; }; xserver = { enable = true; exportConfiguration = true; libinput.enable = true; displayManager.startx.enable = true; videoDrivers = [ &amp;#34;intel&amp;#34;]; }; }; environment.systemPackages = with pkgs; [ glxinfo xorg.xev xorg.xf86inputlibinput libinput xorg.xrandr arandr ]; imports = [ ../../common/qtile.nix ]; } </description>
    </item>
    
    <item>
      <title>xserver.nix</title>
      <link>https://wizardwatch.net/projects/nixos/machines/wizardwatch/xserver.nix/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://wizardwatch.net/projects/nixos/machines/wizardwatch/xserver.nix/</guid>
      <description>{ config, pkgs, ... }:{ services = { dbus = { enable = true; }; xserver = { wacom.enable = true; inputClassSections = [ &amp;#39;&amp;#39; Identifier &amp;#34;Wacom One Pen Display 13&amp;#34; MatchUSBID &amp;#34;056a:03a6&amp;#34; MatchIsTablet &amp;#34;on&amp;#34; MatchDevicePath &amp;#34;/dev/input/event*&amp;#34; Driver &amp;#34;wacom&amp;#34; &amp;#39;&amp;#39; &amp;#39;&amp;#39; Identifier &amp;#34;Wacom One Pen Display 13&amp;#34; MatchUSBID &amp;#34;056a:03a6&amp;#34; MatchIsKeyboard &amp;#34;on&amp;#34; MatchDevicePath &amp;#34;/dev/input/event*&amp;#34; Driver &amp;#34;libinput&amp;#34; &amp;#39;&amp;#39; ]; enable = true; exportConfiguration = true; xrandrHeads = [ { output = &amp;#34;DisplayPort-3&amp;#34;; primary = true; monitorConfig = &amp;#39;&amp;#39; Option &amp;#34;Position&amp;#34; &amp;#34;0 0&amp;#34; &amp;#39;&amp;#39;; } { output = &amp;#34;DisplayPort-2&amp;#34;; monitorConfig = &amp;#39;&amp;#39; Option &amp;#34;Position&amp;#34; &amp;#34;3440 0&amp;#34; &amp;#39;&amp;#39;; } { output = &amp;#34;HDMI-A-0&amp;#34;; monitorConfig = &amp;#39;&amp;#39; Option &amp;#34;Position&amp;#34; &amp;#34;855 1440&amp;#34; &amp;#39;&amp;#39;; } ]; libinput.</description>
    </item>
    
  </channel>
</rss>
