nixos-configs/devices
matt1432 640c3aec06
All checks were successful
Discord / discord commits (push) Has been skipped
fix(plymouth): set timeout to 0
2024-07-10 21:27:29 -04:00
..
android refactor: modularize flake and import nixpkgs 2024-05-20 22:41:45 -04:00
bbsteamie feat: add plymouth to bbsteamie 2024-07-10 20:38:03 -04:00
binto chore: update flake.lock 2024-07-04 19:33:33 -04:00
cluster feat(servers): use caddy instead of nginx proxy for jellyfin 2024-05-22 14:30:34 -04:00
nos chore: update flake.lock 2024-07-09 18:35:28 -04:00
oksys style: change some nix formatting 2024-06-09 22:49:30 -04:00
servivi refactor: use simple instead of oneshot type for systemd 2024-07-07 01:54:46 -04:00
wim fix(plymouth): set timeout to 0 2024-07-10 21:27:29 -04:00
README.md feat(steamdeck): prepare config for eventual install 2024-06-29 03:45:06 -04: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
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

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