nixos-configs/devices
matt1432 3b892c0416
All checks were successful
Discord / discord commits (push) Has been skipped
chore: update flake.lock
Flake Inputs:
• Updated input 'astal':
    'github:Aylur/astal/36adb5a' (2024-09-18)
  → 'github:Aylur/astal/5ae0a9e' (2024-09-21)

• Updated input 'discord-overlay':
    'github:matt1432/discord-nightly-overlay/64c50d0' (2024-09-18)
  → 'github:matt1432/discord-nightly-overlay/26645e5' (2024-09-21)

• Updated input 'gpu-screen-recorder-src':
    'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=6e73e40' (2024-09-18)
  → 'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=77364b7' (2024-09-21)

• Updated input 'home-manager':
    'github:nix-community/home-manager/d2493de' (2024-09-17)
  → 'github:nix-community/home-manager/14929f7' (2024-09-21)

• Updated input 'jovian':
    'github:Jovian-Experiments/Jovian-NixOS/f7a1bb0' (2024-09-18)
  → 'github:Jovian-Experiments/Jovian-NixOS/faf4c74' (2024-09-21)

• Updated input 'nix-gaming':
    'github:fufexan/nix-gaming/3e51c98' (2024-09-15)
  → 'github:fufexan/nix-gaming/7ea77f2' (2024-09-20)

• Updated input 'nixd':
    'github:nix-community/nixd/e2f0d90' (2024-09-18)
  → 'github:nix-community/nixd/a47ac2c' (2024-09-19)

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/75ac2a5' (2024-09-18)
  → 'github:NixOS/nixpkgs/eca2693' (2024-09-21)

• Updated input 'nixpkgs-wayland':
    'github:nix-community/nixpkgs-wayland/aaedb02' (2024-09-18)
  → 'github:nix-community/nixpkgs-wayland/ff23ca1' (2024-09-21)

• Updated input 'pcsd':
    'github:matt1432/nixos-pcsd/82a158d' (2024-09-04)
  → 'github:matt1432/nixos-pcsd/213d6cc' (2024-09-19)

• Updated input 'spotifyplus-src':
    'github:thlucas1/homeassistantcomponent_spotifyplus/a51c5ed' (2024-09-16)
  → 'github:thlucas1/homeassistantcomponent_spotifyplus/8785192' (2024-09-20)

• Updated input 'spotifywebapi-src':
    'github:thlucas1/SpotifyWebApiPython/fd231c7' (2024-09-12)
  → 'github:thlucas1/SpotifyWebApiPython/3750e0e' (2024-09-20)

• Updated input 'ts-for-gir-src':
    'github:gjsify/ts-for-gir/f0f46a3' (2024-08-31)
  → 'github:gjsify/ts-for-gir/72ad963' (2024-09-20)

Docker Images:
• ghcr.io/linuxserver/radarr latest:
   sha256:3bee8fb8eb4bb93b77eb4e0c5d755f25649223965af59f5f0363ddda03c6d10c
 → sha256:dfbce5095045fc1c15058318342ee590ab50379854b13464dd2ca17b10c4beb4

• ghcr.io/linuxserver/sabnzbd latest:
   sha256:cf7743af338e1cdfc97f6e6c605c8c45d737a4f268ab96ba6cec565134cea5e1
 → sha256:374a89d565afda9e90ffb01b1ed032390cf701f24e9c035a842440194fdca1a0

• ghcr.io/linuxserver/sonarr latest:
   sha256:28cc44346fc87805b52a4376a89edc12cf082a5530cffee800a6c05dee482734
 → sha256:98c21a64377619ec74778c70cc2e74d3e978a4d2c61f97b9ad88a0e5bc0766f9

Misc Sources:
Vuetorrent: 2.12.0 -> 2.13.0
2024-09-21 20:42:19 -04:00
..
android refactor: replace 'with' with attrValues 2024-08-31 19:16:06 -04:00
bbsteamie chore: update flake.lock 2024-09-12 21:35:53 -04:00
binto refactor: add default in device modules and put home state ver in common 2024-09-05 08:17:23 -04:00
cluster chore(headscale): bump from working rev to 0.23.0 2024-09-20 23:09:28 -04:00
homie feat(hass): package spotifyplus 2024-09-19 22:16:11 -04:00
nos chore: update flake.lock 2024-09-21 20:42:19 -04:00
servivi fix(docker): add enable option 2024-09-05 08:53:54 -04:00
wim refactor: add default in device modules and put home state ver in common 2024-09-05 08:17:23 -04:00
README.md feat(homie): add tailscale aliases 2024-08-18 23:01:08 -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
homie My Lenovo mini PC that will serve as a Home-assistant server
nos My custom built NAS
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 {
  ...