matt1432
0a003e14b5
All checks were successful
Discord / discord commits (push) Has been skipped
Flake Inputs: • Updated input 'discord-overlay': 'github:matt1432/discord-nightly-overlay/6140012' (2024-08-31) → 'github:matt1432/discord-nightly-overlay/a4a9f83' (2024-09-02) • Updated input 'discord-overlay/Vencord-src': 'github:Vendicated/vencord/db2f5c9' (2024-08-29) → 'github:Vendicated/vencord/accfc15' (2024-09-02) • Updated input 'home-manager': 'github:nix-community/home-manager/c2cd2a5' (2024-08-23) → 'github:nix-community/home-manager/471e3eb' (2024-09-01) • Updated input 'hyprland': 'git+https://github.com/hyprwm/Hyprland?ref=refs/heads/main&rev=a6315b0&submodules=1' (2024-08-31) → 'git+https://github.com/hyprwm/Hyprland?ref=refs/heads/main&rev=6934e7a&submodules=1' (2024-09-01) • Added input 'hyprpaper': 'github:hyprwm/hyprpaper/1c18ad6' (2024-09-01) • Updated input 'jovian': 'github:Jovian-Experiments/Jovian-NixOS/a14f978' (2024-08-30) → 'github:Jovian-Experiments/Jovian-NixOS/b13488a' (2024-09-01) • Updated input 'nh': 'github:viperML/nh/a922ead' (2024-08-26) → 'github:viperML/nh/5dd64eb' (2024-09-02) • Updated input 'nix-gaming': 'github:fufexan/nix-gaming/963803d' (2024-08-25) → 'github:fufexan/nix-gaming/76446e8' (2024-09-01) • Updated input 'nix-index-db': 'github:Mic92/nix-index-database/e333d62' (2024-08-25) → 'github:Mic92/nix-index-database/32058e9' (2024-09-01) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/71e91c4' (2024-08-28) → 'github:NixOS/nixpkgs/12228ff' (2024-08-31) • Updated input 'nixpkgs-wayland': 'github:nix-community/nixpkgs-wayland/3f77707' (2024-08-31) → 'github:nix-community/nixpkgs-wayland/52b72b1' (2024-09-02) • Updated input 'pcsd': 'github:matt1432/nixos-pcsd/724893b' (2024-08-24) → 'github:matt1432/nixos-pcsd/cd327ff' (2024-09-02) • Updated input 'sops-nix': 'github:Mic92/sops-nix/be0eec2' (2024-08-12) → 'github:Mic92/sops-nix/5db5921' (2024-09-01) • Updated input 'wakewords-src': 'github:fwartner/home-assistant-wakewords-collection/18ba1c5' (2024-07-25) → 'github:fwartner/home-assistant-wakewords-collection/de66e86' (2024-09-02) Docker Images: • rssbridge/rss-bridge latest: sha256:ffc5966ca95af2d031a5c7561d3144454898e330a68862bb0299db6349806c25 → sha256:a4e973ca2c1967d4dae52bfd0694aa38e547c1f3e0c52553d0789ad4d55e6423 • ghcr.io/linuxserver/prowlarr latest: sha256:c93f075dc5afb74dc7a0a55e90974f81425a5d3c5d293022c5416431f4963ce9 → sha256:9dd32e2270d174b07bd33a1f54e2b79e03ad944df62ed93efa08f4a381adc9a1 • ghcr.io/linuxserver/radarr latest: sha256:b034531ff81d3e5e1f9fd70c969746040b40e6484c88981ea5d0dee732c10bc3 → sha256:47acec85a0d92d107096088aebe83d1d0a434def34e5bac317fff18ca28741ae Firefox Addons: ttv-lol-pro: 2.3.8 -> 2.3.9 |
||
---|---|---|
.. | ||
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 {
...