matt1432
1ad2610b01
All checks were successful
Discord / discord commits (push) Has been skipped
Flake Inputs: • Updated input 'discord-overlay': 'github:matt1432/discord-nightly-overlay/aaee3dc' (2024-08-29) → 'github:matt1432/discord-nightly-overlay/c61d792' (2024-08-30) • Updated input 'gpu-screen-recorder-src': 'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=1b35667' (2024-08-20) → 'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=c99b986' (2024-08-29) • Updated input 'hyprland': 'git+https://github.com/hyprwm/Hyprland?ref=refs/heads/main&rev=92a0dd1&submodules=1' (2024-08-29) → 'git+https://github.com/hyprwm/Hyprland?ref=refs/heads/main&rev=c5fd577&submodules=1' (2024-08-30) • Updated input 'hyprland/aquamarine': 'github:hyprwm/aquamarine/23c7925' (2024-08-28) → 'github:hyprwm/aquamarine/cff0019' (2024-08-30) • Updated input 'hyprland/hyprutils': 'github:hyprwm/hyprutils/aadf9a2' (2024-08-28) → 'github:hyprwm/hyprutils/8976e3f' (2024-08-29) • Updated input 'jovian': 'github:Jovian-Experiments/Jovian-NixOS/0ce5684' (2024-08-29) → 'github:Jovian-Experiments/Jovian-NixOS/a14f978' (2024-08-30) • Updated input 'nixpkgs-wayland': 'github:nix-community/nixpkgs-wayland/e72651a' (2024-08-29) → 'github:nix-community/nixpkgs-wayland/99b0d59' (2024-08-30) Docker Images: • codeberg.org/forgejo/forgejo 8.0.2: sha256:221639a84fae9d9ec5236a50f4980c3cd5332851949f6e989f5f44cc411cf4fa → sha256:818fd892add3c6ade24ece9cc498301a44f68b844bd21abccf4795e7011094bf • rssbridge/rss-bridge latest: sha256:b5bdea7965411cb1b3c48120ddda04c1e6218bcbeb201d40d81a18e15fcfef78 → sha256:327315251d038d2ddae7eb088569470f52255f8a0cdc4df41eab47dab4624318 Firefox Addons: bitwarden: 2024.8.0 -> 2024.8.1 |
||
---|---|---|
.. | ||
android | ||
bbsteamie | ||
binto | ||
cluster | ||
homie | ||
nos | ||
servivi | ||
wim | ||
README.md |
Devices
This directory encompasses every device's main configuration file.
List of my Devices
Name | Description |
---|---|
android |
My Nix-On-Droid configuration for my OnePlus 9 Pro |
bbsteamie |
My wife's SteamDeck that has a pink case |
binto |
My desktop PC with a multi-monitor setup and an NVIDIA (cringe) 3070 |
cluster |
Two Lenovo mini PCs that make use of NixOS-pcsd to form a cluster |
homie |
My Lenovo mini PC that will serve as a Home-assistant server |
nos |
My custom built NAS |
servivi |
A gaming PC in a previous life, it is now used as a build farm and hosts game servers |
wim |
My 2-1 Lenovo Laptop that I use for uni |
Global Vars
In every device's default.nix
, you'll find these settings
# $FLAKE/devices/<name>/default.nix
vars = {
mainUser = "matt";
hostName = "wim";
...
};
from these declared settings, I get access to global variables that are different on each host using a 'let in' block:
let
inherit (config.vars) mainUser ...;
in {
...