2024-01-17 20:16:26 -05:00
|
|
|
# Devices
|
|
|
|
|
|
|
|
This directory encompasses every device's main configuration file.
|
|
|
|
|
|
|
|
## List of my Devices
|
|
|
|
|
2024-06-29 03:45:06 -04:00
|
|
|
| Name | Description |
|
|
|
|
| ----------- | ------------------------------------------------------------------------------------------------------- |
|
|
|
|
| `android` | My [Nix-On-Droid](https://github.com/nix-community/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](https://github.com/matt1432/nixos-pcsd) to form a cluster |
|
|
|
|
| `nos` | My custom built NAS |
|
|
|
|
| `oksys` | A very old Acer laptop that went from sailing the seas for years to becoming my web server and VPN host. It is now retired indefinitely. |
|
|
|
|
| `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 |
|
2024-01-17 20:16:26 -05:00
|
|
|
|
|
|
|
## Global Vars
|
|
|
|
|
2024-01-17 21:07:02 -05:00
|
|
|
In every device's `default.nix`, you'll find these [settings](https://git.nelim.org/matt1432/nixos-configs/src/branch/master/common/vars.nix)
|
2024-01-17 20:16:26 -05:00
|
|
|
|
|
|
|
```nix
|
|
|
|
# $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:
|
|
|
|
|
|
|
|
```nix
|
|
|
|
let
|
|
|
|
inherit (config.vars) mainUser ...;
|
|
|
|
in {
|
|
|
|
...
|
|
|
|
```
|