nixos-configs/devices
matt1432 129aa3224e
All checks were successful
Discord / discord commits (push) Has been skipped
fix(hass): correct some nix errors to build
2024-09-04 17:50:03 -04:00
..
android refactor: replace 'with' with attrValues 2024-08-31 19:16:06 -04:00
bbsteamie fix(bbsteamie): add wayland env for gui apps 2024-09-02 20:36:57 -04:00
binto refactor: replace 'with' with attrValues 2024-08-31 19:16:06 -04:00
cluster fix(hass): expose esphome dashboard on tailnet 2024-09-02 23:24:04 -04:00
homie feat(hass): move whisper to nos for gpu 2024-09-04 17:43:46 -04:00
nos fix(hass): correct some nix errors to build 2024-09-04 17:50:03 -04:00
servivi refactor: replace 'with' with attrValues 2024-08-31 19:16:06 -04:00
wim refactor: replace 'with' with attrValues 2024-08-31 19:16:06 -04:00
README.md feat(homie): add tailscale aliases 2024-08-18 23:01:08 -04:00

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 {
  ...