nixos-configs/devices
matt1432 0a1029e788
All checks were successful
Discord / discord commits (push) Has been skipped
feat(bbsteamie): mount sdcard at boot
2024-08-14 22:43:06 -04:00
..
android feat: add 'from' script to get real path of exe 2024-07-28 01:44:16 -04:00
bbsteamie feat(bbsteamie): mount sdcard at boot 2024-08-14 22:43:06 -04:00
binto refactor: make modules independant and exposed in the flake for outside use 2024-08-02 22:32:29 -04:00
cluster feat(servers): stop using a specific WAN IP to account for IP changing 2024-08-11 16:52:00 -04:00
nos chore: update flake.lock 2024-08-13 19:33:01 -04:00
servivi fix(bin-cache): fix buildAll script 2024-08-13 20:40:55 -04:00
wim fix(wim): switch back to fprintd 2024-08-07 09:57:32 -04:00
README.md refactor(devices): place configs in order and delete oksys 2024-07-14 22:59:33 -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
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 {
  ...