nixos-configs/devices
matt1432 d862afec14
All checks were successful
Discord / discord commits (push) Has been skipped
feat(mc): add builder server
2024-02-18 17:51:17 -05:00
..
android refactor: make overlay default.nix nix-on-droid friendly 2024-01-17 20:40:12 -05:00
binto feat(hw): change systemd-boot settings and ryzen stuff 2024-02-17 14:52:43 -05:00
cluster chore: update homepage ip 2024-02-18 00:15:37 -05:00
nas feat(arion): add homepage setup 2024-02-18 00:10:05 -05:00
oksys refactor(devices): rearrange some files to prepare for nas 2024-02-17 20:45:06 -05:00
servivi feat(mc): add builder server 2024-02-18 17:51:17 -05:00
wim feat(hw): change systemd-boot settings and ryzen stuff 2024-02-17 14:52:43 -05:00
README.md refactor(devices): rearrange some files to prepare for nas 2024-02-17 20:45:06 -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
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
nas My current custom built server running Proxmox. Conversion to NixOS wip
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 to slowly convert my Proxmox server to NixOS
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 {
  ...