refactor: move machine specific modules inside subdirs
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2025-01-17 14:46:47 -05:00
parent 0323373cdf
commit 8326399b80
21 changed files with 16 additions and 16 deletions

View file

@ -1,6 +1,6 @@
{...}: { {...}: {
imports = [ imports = [
./gpu-replay.nix ./gpu-replay
./nix-gaming.nix ./nix-gaming
]; ];
} }

View file

@ -1,11 +1,11 @@
{...}: { {...}: {
imports = [ imports = [
./blocky.nix ./blocky
./caddy ./caddy
./headscale ./headscale
./nfs-client.nix ./nfs-client
./pcsd.nix ./pcsd
./searxng ./searxng
./unbound.nix ./unbound
]; ];
} }

View file

@ -1,13 +1,13 @@
{...}: { {...}: {
imports = [ imports = [
./docker ./docker
./homepage.nix ./homepage
./jellyfin ./jellyfin
./qbittorrent ./qbittorrent
# FIXME: I need to actually do this properly before unleashing it on my library # FIXME: I need to actually do this properly before unleashing it on my library
# ./subtitles # ./subtitles
./llm.nix ./llm
./mergerfs.nix ./mergerfs
./snapraid.nix ./snapraid
]; ];
} }

View file

@ -1,9 +1,9 @@
{...}: { {...}: {
imports = [ imports = [
./7-days-to-die.nix ./7-days-to-die
./binary-cache.nix ./binary-cache
./minecraft.nix ./minecraft
./nfs.nix ./nfs
./pr-tracker.nix ./pr-tracker
]; ];
} }

View file

@ -1,5 +1,5 @@
{...}: { {...}: {
imports = [ imports = [
./security.nix ./security
]; ];
} }