nixos-configs/devices
matt1432 f8dd9f7891
All checks were successful
Discord / discord commits (push) Has been skipped
chore: unpin hyprland and nextcloud, switch back to nixos-unstable
Flake Inputs:
• Updated input 'astal':
    'github:Aylur/astal/5ae0a9e' (2024-09-21)
  → 'github:Aylur/astal/8cab7d0' (2024-09-22)

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

• Updated input 'hyprland':
    'git+https://github.com/hyprwm/Hyprland?ref=refs/heads/main&rev=b248d59&submodules=1' (2024-09-18)
  → 'git+https://github.com/hyprwm/Hyprland?ref=refs/heads/main&rev=e5ff19a&submodules=1' (2024-09-22)

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

• Updated input 'nix-gaming':
    'github:fufexan/nix-gaming/7ea77f2' (2024-09-20)
  → 'github:fufexan/nix-gaming/43a085b' (2024-09-22)

• Updated input 'nix-index-db':
    'github:Mic92/nix-index-database/c1b0fa0' (2024-09-16)
  → 'github:Mic92/nix-index-database/c7515c2' (2024-09-22)

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/eca2693' (2024-09-21)
  → 'github:NixOS/nixpkgs/c04d565' (2024-09-19)

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

Docker Images:
• nextcloud fpm:
   sha256:74e016552a6f908fa3700c0dfa3757fb20f8ff2a630cd357ebbdc9c359a53bf0
 → sha256:724553f742322d67f34282be46b414572d4e0cd46ccd54d2f2a24b6a87a472b0

• ghcr.io/linuxserver/radarr latest:
   sha256:dfbce5095045fc1c15058318342ee590ab50379854b13464dd2ca17b10c4beb4
 → sha256:df843d96b812d858b94377ffed1918424ece6735038a19e8ff93730277757b65
2024-09-22 14:05:24 -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: add androidtv on linux proof of concept 2024-09-22 01:20:19 -04:00
nos chore: unpin hyprland and nextcloud, switch back to nixos-unstable 2024-09-22 14:05:24 -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 {
  ...