nixos-configs/devices
matt1432 ef11b36f84
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(gsr): clean up packaging
2024-11-21 11:26:08 -05:00
..
android refactor: get rid of useless global vars 2024-11-18 12:30:54 -05:00
bbsteamie refactor: get rid of useless global vars 2024-11-18 12:30:54 -05:00
binto refactor(gsr): clean up packaging 2024-11-21 11:26:08 -05:00
cluster refactor: get rid of useless global vars 2024-11-18 12:30:54 -05:00
homie refactor: rename legacyPackages to scopedPackages 2024-11-20 15:17:55 -05:00
nos chore: update sources 2024-11-19 22:14:49 -05:00
servivi refactor: get rid of useless global vars 2024-11-18 12:30:54 -05:00
wim refactor: rename legacyPackages to scopedPackages 2024-11-20 15:17:55 -05:00
README.md refactor: get rid of useless global vars 2024-11-18 12:30:54 -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";
  ...
};

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