matt1432
6b93610cf0
All checks were successful
Discord / discord commits (push) Has been skipped
Flake Inputs: • Updated input 'agsV2': 'github:Aylur/ags/35e40fd' (2024-10-09) → 'github:Aylur/ags/5838646' (2024-10-12) • Updated input 'astal': 'github:Aylur/astal/921272a' (2024-10-10) → 'github:Aylur/astal/bdb23e2' (2024-10-14) • Updated input 'gpu-screen-recorder-src': 'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=935a7b8' (2024-10-09) → 'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=601219f' (2024-10-14) • Updated input 'gtk-theme-src': 'github:dracula/gtk/b5b7f3a' (2024-10-03) → 'github:dracula/gtk/e5c95d7' (2024-10-12) • Updated input 'home-manager': 'github:nix-community/home-manager/d47d332' (2024-10-10) → 'github:nix-community/home-manager/e1aec54' (2024-10-14) • Updated input 'hyprland': 'github:hyprwm/Hyprland/b65773b' (2024-10-10) → 'github:hyprwm/Hyprland/01c2ff3' (2024-10-14) • Updated input 'jovian': 'github:Jovian-Experiments/Jovian-NixOS/a25f915' (2024-10-08) → 'github:Jovian-Experiments/Jovian-NixOS/e4f4d78' (2024-10-11) • Updated input 'nix-gaming': 'github:fufexan/nix-gaming/86a897d' (2024-10-10) → 'github:fufexan/nix-gaming/2c8d8bb' (2024-10-14) • Updated input 'nix-gaming/umu': 'git+https://github.com/Open-Wine-Components/umu-launcher/?dir=packaging/nix&ref=refs/heads/main&rev=4dc0ef6&submodules=1' (2024-10-04) → 'git+https://github.com/Open-Wine-Components/umu-launcher/?dir=packaging/nix&ref=refs/heads/main&rev=475e2b3&submodules=1' (2024-10-12) • Updated input 'nix-index-db': 'github:Mic92/nix-index-database/5fce10c' (2024-10-07) → 'github:Mic92/nix-index-database/5c54c33' (2024-10-13) • Updated input 'nixpkgs-wayland': 'github:nix-community/nixpkgs-wayland/2a1ef3c' (2024-10-10) → 'github:nix-community/nixpkgs-wayland/85bd1a4' (2024-10-14) • Updated input 'pcsd': 'github:matt1432/nixos-pcsd/d85a2d4' (2024-10-03) → 'github:matt1432/nixos-pcsd/fe8f65b' (2024-10-14) • Updated input 'spotifywebapi-src': 'github:thlucas1/SpotifyWebApiPython/e885769' (2024-10-10) → 'github:thlucas1/SpotifyWebApiPython/4bb0658' (2024-10-14) • Updated input 'tuya-local-src': 'github:make-all/tuya-local/20c1224' (2024-10-10) → 'github:make-all/tuya-local/b1c1c16' (2024-10-14) Docker Images: • hrfee/jfa-go unstable: sha256:f78c5b727b6c94942803f6a3bc47aa60fe197b97417d869448aa6e7fd4bba55c → sha256:5254d210cbd45e7423e7f2ae31e5e6dcfa232311ee79da8edd3b7982b144c598 • nextcloud fpm: sha256:88ad5957e747ddceb7641b072c22a0fbf85fe3b7ca9fc63a871d72b14e5d0ae1 → sha256:38149fa4fefab1e56a976d37db0bb22a049c4e6faf4e1d755fdc536ff5e7f69a • quay.io/vaultwarden/server latest: sha256:7899093c3d34eaf1c4f12cd4bb31b3cb4e0ccfa3823b3661feff4561be69c823 → sha256:c07f5319d20bdbd58a19d7d779a1e97159ce25cb95572baa947c70f58589937c • ghcr.io/linuxserver/radarr latest: sha256:d758c5a5edc4cda1263260948b3f460f511430bccea505dca3cb70af01332ff8 → sha256:e0045d420eaf298a9449e12ed1cce654f171cc1043311f0f1cadaf2afeabe795 |
||
---|---|---|
.. | ||
android | ||
bbsteamie | ||
binto | ||
cluster | ||
homie | ||
nos | ||
servivi | ||
wim | ||
README.md |
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 {
...