nixos-configs/devices
matt1432 c763205bfc
All checks were successful
Discord / discord commits (push) Has been skipped
chore: update flake.lock
2024-03-08 15:01:52 -05:00
..
android refactor: make overlay default.nix nix-on-droid friendly 2024-01-17 20:40:12 -05:00
binto refactor(nvidia): make global module for enabling nvidia easily 2024-03-03 16:13:56 -05:00
cluster fix(calibre): add env vars to support subdir reverse proxy 2024-03-06 14:35:29 -05:00
nos chore: update flake.lock 2024-03-08 15:01:52 -05:00
oksys chore: update flake.lock 2024-02-21 00:20:41 -05:00
servivi feat(servers): add nos machine config 2024-03-02 02:59:40 -05:00
wim feat(hypr): switch from swaylock to hyprlock 2024-03-03 17:18:59 -05:00
README.md fix(cache): point to servivi for binary cache 2024-03-02 03:09:42 -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
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 to experiment and do heavier stuff
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 {
  ...