nixos-configs/devices
matt1432 b5d17e6307
All checks were successful
Discord / discord commits (push) Has been skipped
chore: update sources
Flake Inputs:
• Updated input 'ags':
    'github:Aylur/ags/7c04d1a' (2024-11-13)
  → 'github:Aylur/ags/d8c2748' (2024-11-14)

• Updated input 'astal':
    'github:Aylur/astal/9652fb8' (2024-11-13)
  → 'github:Aylur/astal/d538d8e' (2024-11-14)

• Updated input 'custom-sidebar-src':
    'github:elchininet/custom-sidebar/f36308d' (2024-11-12)
  → 'github:elchininet/custom-sidebar/8710f88' (2024-11-14)

• Updated input 'discord-overlay':
    'github:matt1432/discord-nightly-overlay/26c5348' (2024-11-13)
  → 'github:matt1432/discord-nightly-overlay/a8130ae' (2024-11-14)

• Updated input 'discord-overlay/Vencord-src':
    'github:Vendicated/vencord/7ef536c' (2024-11-12)
  → 'github:Vendicated/vencord/25ceff5' (2024-11-13)

• Updated input 'home-manager':
    'github:nix-community/home-manager/60bb110' (2024-11-10)
  → 'github:nix-community/home-manager/1d0862e' (2024-11-14)

• Updated input 'hyprland':
    'github:hyprwm/Hyprland/3fb4737' (2024-11-13)
  → 'github:hyprwm/Hyprland/098e491' (2024-11-15)

• Updated input 'material-rounded-theme-src':
    'github:Nerwyn/material-rounded-theme/0aad431' (2024-11-07)
  → 'github:Nerwyn/material-rounded-theme/a308b64' (2024-11-14)

• Updated input 'nix-gaming':
    'github:fufexan/nix-gaming/e9adb42' (2024-11-12)
  → 'github:fufexan/nix-gaming/5b3cac9' (2024-11-14)

• Updated input 'nix-index-db':
    'github:Mic92/nix-index-database/896019f' (2024-11-10)
  → 'github:Mic92/nix-index-database/40d882b' (2024-11-14)

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/76612b1' (2024-11-09)
  → 'github:NixOS/nixpkgs/dc460ec' (2024-11-11)

• Updated input 'nixpkgs-wayland':
    'github:nix-community/nixpkgs-wayland/c2fa066' (2024-11-13)
  → 'github:nix-community/nixpkgs-wayland/f2b7b11' (2024-11-14)

• Updated input 'pcsd':
    'github:matt1432/nixos-pcsd/eb675d6' (2024-11-07)
  → 'github:matt1432/nixos-pcsd/1b10d74' (2024-11-14)

• Updated input 'tuya-local-src':
    'github:make-all/tuya-local/6676925' (2024-11-13)
  → 'github:make-all/tuya-local/acf1e9a' (2024-11-14)

Docker Images:
• postgres 14:
   sha256:9fcd27ebadf8d8fb1f257b1799eff6363cb0d947ffff046de5d49915f469ca08
 → sha256:e7d3e4fdcdb4187649d50217c3a8fed20bee215cd19233004c9fb0eaeae5ecf0

• postgres 15-alpine:
   sha256:8b963ea3038c3b32182ee7f592ccde21242fa7c5fd9d1b72aa333c27f1bfc809
 → sha256:846079648cd9ac5dbf977aa7ee68d7e57e8ed1e368d88b54298e3b8e96a23d88

• ghcr.io/linuxserver/sabnzbd latest:
   sha256:5ae714b1a941a38471c2cc381ec407f93b3d7823c5a77a9a651502036b70ad69
 → sha256:d9eda6d9bd651886631f01f3ebb1ff33f9f5d04f0fd95be8fb22bc1a779a3d84
2024-11-14 21:07:06 -05:00
..
android refactor: replace 'with' with attrValues 2024-08-31 19:16:06 -04:00
bbsteamie fix(bbsteamie): adjust to latest automount fixes 2024-10-08 15:25:55 -04:00
binto feat(ags): update to official agsV2 2024-11-13 19:39:01 -05:00
cluster chore(caddy): remove unneeded timeout 2024-10-28 09:23:47 -04:00
homie feat(bt): auto connect speaker on boot 2024-11-12 20:04:54 -05:00
nos chore: update sources 2024-11-14 21:07:06 -05:00
servivi chore(nixFastBuild): get rid of useless sed 2024-10-30 20:47:47 -04:00
wim feat(ags): update to official agsV2 2024-11-13 19:39:01 -05:00
README.md feat(ags): update to official agsV2 2024-11-13 19:39:01 -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
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 {
  ...