matt1432
fcb127ec84
All checks were successful
Discord / discord commits (push) Has been skipped
Flake Inputs: • Updated input 'agsV2': 'github:Aylur/ags/9fe75a1' (2024-10-22) → 'github:Aylur/ags/4b1e7da' (2024-11-01) • Updated input 'astal': 'github:Aylur/astal/2585ca7' (2024-10-30) → 'github:Aylur/astal/d47b470' (2024-11-01) • Updated input 'custom-sidebar-src': 'github:elchininet/custom-sidebar/395688b' (2024-10-27) → 'github:elchininet/custom-sidebar/29afb63' (2024-11-01) • Updated input 'gpu-screen-recorder-src': 'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=ea139ab' (2024-10-28) → 'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=258f690' (2024-11-01) • Updated input 'home-manager': 'github:nix-community/home-manager/e834140' (2024-10-27) → 'github:nix-community/home-manager/1743615' (2024-11-01) • Updated input 'hyprland': 'github:hyprwm/Hyprland/7c7a84f' (2024-10-30) → 'github:hyprwm/Hyprland/32b1817' (2024-11-01) • Updated input 'hyprland-plugins': 'github:hyprwm/hyprland-plugins/81bda67' (2024-10-28) → 'github:hyprwm/hyprland-plugins/60c5c63' (2024-10-31) • Updated input 'jovian': 'github:Jovian-Experiments/Jovian-NixOS/c11bab1' (2024-10-30) → 'github:Jovian-Experiments/Jovian-NixOS/bd1da56' (2024-11-01) • Updated input 'material-rounded-theme-src': 'github:Nerwyn/material-rounded-theme/5fbb943' (2024-10-30) → 'github:Nerwyn/material-rounded-theme/c5ab28a' (2024-10-31) • Updated input 'nix-gaming': 'github:fufexan/nix-gaming/105d77f' (2024-10-30) → 'github:fufexan/nix-gaming/bcc7c89' (2024-11-01) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/18536bf' (2024-10-25) → 'github:NixOS/nixpkgs/807e915' (2024-10-29) • Updated input 'nixpkgs-wayland': 'github:nix-community/nixpkgs-wayland/35f40f1' (2024-10-30) → 'github:nix-community/nixpkgs-wayland/30bd379' (2024-11-01) • Updated input 'nixpkgs-wayland/nix-eval-jobs': 'github:nix-community/nix-eval-jobs/a3307ac' (2024-10-10) → 'github:nix-community/nix-eval-jobs/7f9159a' (2024-10-31) • Updated input 'pcsd': 'github:matt1432/nixos-pcsd/d2aacb2' (2024-10-29) → 'github:matt1432/nixos-pcsd/18409e6' (2024-11-01) • Updated input 'ts-for-gir-src': 'github:gjsify/ts-for-gir/72ad963' (2024-09-20) → 'github:gjsify/ts-for-gir/ec732f1' (2024-11-01) • Updated input 'tuya-local-src': 'github:make-all/tuya-local/bbd4179' (2024-10-30) → 'github:make-all/tuya-local/9142927' (2024-11-01) Docker Images: • 21hsmw/flaresolverr nodriver: sha256:506b7f26aaf10e8c07ab22f74a7eea31eca66e263fe52d570b7bc0ef29952db9 → sha256:21ade52a9dc85c1bc1592ccc994e41f3365a4603b3ca4a11328583aa6e99ace1 • ghcr.io/linuxserver/sabnzbd latest: sha256:293517b90ef929178387f07c074c1f88d96d94eac3c1d95944ba2891527c1396 → sha256:5ae714b1a941a38471c2cc381ec407f93b3d7823c5a77a9a651502036b70ad69 Misc Sources: Vuetorrent: 2.15.0 -> 2.16.0 |
||
---|---|---|
.. | ||
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 {
...