nixos-configs/devices
matt1432 16cfea7855
All checks were successful
Discord / discord commits (push) Has been skipped
chore: update flake.lock
Flake Inputs:
• Updated input 'discord-overlay':
    'github:matt1432/discord-nightly-overlay/a4a9f83' (2024-09-02)
  → 'github:matt1432/discord-nightly-overlay/0e14fde' (2024-09-05)

• Updated input 'discord-overlay/Vencord-src':
    'github:Vendicated/vencord/accfc15' (2024-09-02)
  → 'github:Vendicated/vencord/8890c8c' (2024-09-05)

• Updated input 'gpu-screen-recorder-src':
    'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=33251a4' (2024-08-31)
  → 'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=98f75b2' (2024-09-03)

• Updated input 'hyprland':
    'git+https://github.com/hyprwm/Hyprland?ref=refs/heads/main&rev=6934e7a&submodules=1' (2024-09-01)
  → 'git+https://github.com/hyprwm/Hyprland?ref=refs/heads/main&rev=027140b&submodules=1' (2024-09-04)

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/12228ff' (2024-08-31)
  → 'github:NixOS/nixpkgs/ad416d0' (2024-09-04)

• Updated input 'pcsd':
    'github:matt1432/nixos-pcsd/cd327ff' (2024-09-02)
  → 'github:matt1432/nixos-pcsd/82a158d' (2024-09-04)

• Updated input 'sops-nix':
    'github:Mic92/sops-nix/5db5921' (2024-09-01)
  → 'github:Mic92/sops-nix/d9d7815' (2024-09-05)

Docker Images:
• vegardit/gitea-act-runner dind-latest:
   sha256:f7e6d2e86588d36b371b71f80356de04e774bba12c45b2246ea02020412b2cbf
 → sha256:d1071eb21edbb477b2d93dda5c8ba4e0aa471ee73e4e52776389744215d8536c

• postgres 14:
   sha256:e3cc76b6d4dfc8f3547641d67053092e7c108e03ab159c00b48fa8d891e2f7b4
 → sha256:148b383bf37b569f1b44d72b3558979540e9f5f951789b0b0c6e827decbeef09

• rssbridge/rss-bridge latest:
   sha256:a4e973ca2c1967d4dae52bfd0694aa38e547c1f3e0c52553d0789ad4d55e6423
 → sha256:ed96ae6fb5be49a7c14fc35de039d53f2b42d99034c49c4e28fe0810e3886445

• nginx latest:
   sha256:447a8665cc1dab95b1ca778e162215839ccbb9189104c79d7ec3a81e14577add
 → sha256:1a2bb47140dd616774ffe05ea1ea8762e1f1f08e20a35632e1e6539376d44d60

• onlyoffice/documentserver latest:
   sha256:d9437b6d8455de45a02dd5ed2529c8c19c5d1407076c03ca73e0737941ec3748
 → sha256:a69b1c43c6641e45789a6ebb7e84359ada749c8e2d4e83916d4e85945238f418

• ghcr.io/wg-easy/wg-easy latest:
   sha256:f6c2587da3fdc9d5927743fb4a92cff42d690b182396ffd0cdad034becb41053
 → sha256:66352ccb4b5095992550aa567df5118a5152b6ed31be34b0a8e118a3c3a35bf5

• ghcr.io/linuxserver/bazarr latest:
   sha256:aa904c142512b64e98b0abd038bf8b07e1b0e8cf3a14a805cb9ae4df9415b933
 → sha256:0364bb3d8d03cf0995036140322f6d0de78dd1924ba990499f67598f7c61ff62

• ghcr.io/linuxserver/sabnzbd latest:
   sha256:223197e9cbb70112244e44ba9660ba7ce1d2128771b8a03ad38e20f85c953583
 → sha256:66576a72ecb80c8d9e8ebffd4699995b29bfff4aefba4c6eae14baac3cbf6716
2024-09-05 10:01:52 -04:00
..
android refactor: replace 'with' with attrValues 2024-08-31 19:16:06 -04:00
bbsteamie refactor: add default in device modules and put home state ver in common 2024-09-05 08:17:23 -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 refactor: add default in device modules and put home state ver in common 2024-09-05 08:17:23 -04:00
homie refactor(wyoming+): assert instead of import docker module 2024-09-05 08:48:42 -04:00
nos chore: update flake.lock 2024-09-05 10:01:52 -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 {
  ...