nixos-configs/devices
matt1432 92d89e1cd3
All checks were successful
Discord / discord commits (push) Has been skipped
chore: remove subsync from inputs
2024-11-15 14:17:16 -05:00
..
android refactor: replace 'with' with attrValues 2024-08-31 19:16:06 -04:00
bbsteamie fix(bbsteamie): adjust to latest automount fixes 2024-10-08 15:25:55 -04:00
binto feat(ags): update to official agsV2 2024-11-13 19:39:01 -05:00
cluster chore(caddy): remove unneeded timeout 2024-10-28 09:23:47 -04:00
homie feat(bt): auto connect speaker on boot 2024-11-12 20:04:54 -05:00
nos chore: remove subsync from inputs 2024-11-15 14:17:16 -05:00
servivi chore(nixFastBuild): get rid of useless sed 2024-10-30 20:47:47 -04:00
wim feat(ags): update to official agsV2 2024-11-13 19:39:01 -05:00
README.md feat(ags): update to official agsV2 2024-11-13 19:39:01 -05: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 {
  ...