chore: refactor

This commit is contained in:
♥ Minnie ♥ 2025-03-08 14:01:08 +08:00
parent f06011e890
commit e6b6325ba6
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
7 changed files with 44 additions and 227 deletions

View file

@ -12,13 +12,7 @@
../common/optional/yubikey.nix
# Services
./services/amdgpu-clocks
./services/flatpak
./services/libinput
./services/ollama
./services/printers
./services/udev
./services/xserver
./services
# Setup our hardware
./hardware-configuration.nix

View file

@ -0,0 +1,11 @@
{...}: {
imports = [
./amdgpu-clocks
./flatpak
./libinput
./ollama
./printers
./udev
./xserver
];
}

View file

@ -7,24 +7,10 @@
../common/users/sajenim
# Services
./services/borgbackup
./services/crowdsec
./services/forgejo
./services/lighttpd
./services/minecraft
./services/mpd
./services/paperless-ngx
./services/postgresql
./services/traefik
./services/wiki-js
./services
# Multimedia
./multimedia/jellyfin
./multimedia/lidarr
./multimedia/prowlarr
./multimedia/qbittorrent
./multimedia/radarr
./multimedia/sonarr
./multimedia
# Setup our hardware
./hardware-configuration.nix

View file

@ -0,0 +1,10 @@
{...}: {
imports = [
./jellyfin
./lidarr
./prowlarr
./qbittorrent
./radarr
./sonarr
];
}

View file

@ -0,0 +1,14 @@
{...}: {
imports = [
./borgbackup
./crowdsec
./forgejo
./lighttpd
./minecraft
./mpd
./paperless-ngx
./postgresql
./traefik
./wiki-js
];
}