nixos-configs/devices
matt1432 6cf090e2f2
All checks were successful
Discord / discord commits (push) Has been skipped
feat(nextcloud): get rid of errors in config
2024-04-24 09:36:52 -04:00
..
android fix(droid): set FLAKE correct value and set as env 2024-03-30 22:17:51 -04:00
binto feat(binto): add logitech mouse 2024-04-20 13:42:51 -04:00
cluster fix(headscale): build custom config to update it to alpha 2024-04-01 01:50:30 -04:00
nos feat(nextcloud): get rid of errors in config 2024-04-24 09:36:52 -04:00
oksys chore: update flake.lock 2024-02-21 00:20:41 -05:00
servivi feat(bin-cache): nixci -> nix-fast-build 2024-04-22 13:51:31 -04:00
wim feat(ags): replace hyprlock with ags 2024-04-19 17:01:09 -04: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 {
  ...