matt1432
b5d17e6307
All checks were successful
Discord / discord commits (push) Has been skipped
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 |
||
---|---|---|
.. | ||
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 {
...