nixos-configs/devices
matt1432 711d088988
All checks were successful
Discord / discord commits (push) Has been skipped
feat(pacemaker): make VIPs a list of sets and impl dependsOn
2024-01-23 12:26:49 -05:00
..
android refactor: make overlay default.nix nix-on-droid friendly 2024-01-17 20:40:12 -05:00
binto feat(servers): add init cluster hw configs 2024-01-21 20:08:27 -05:00
cluster feat(pacemaker): make VIPs a list of sets and impl dependsOn 2024-01-23 12:26:49 -05:00
oksys feat(servers): move caddy to cluster 2024-01-22 22:47:31 -05:00
servivi refactor(arion): setup options instead of importing attrsets 2024-01-22 15:50:05 -05:00
wim refactor(ags): move wim and binto configs together under modules 2024-01-17 19:18:41 -05:00
README.md fix(docs): don't use relative links 2024-01-17 21:07:02 -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 WIP
oksys A very old Acer laptop that went from sailing the seas for years to becoming my web server and VPN host
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 {
  ...