diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-06-15 15:43:45 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-06-15 15:59:27 +0530 |
| commit | 926f411a4c703cab001d64b7f8b9701b79a7dc5c (patch) | |
| tree | a95b94fe0061309b6b422c1c889f9595de439c53 /modules/media | |
| parent | 03d52d1317af446c513c0257f8c497fed2bfbad8 (diff) | |
| download | homeserver-nixos-config-926f411a4c703cab001d64b7f8b9701b79a7dc5c.tar.gz homeserver-nixos-config-926f411a4c703cab001d64b7f8b9701b79a7dc5c.zip | |
Refactor settings management + dashboard links
Diffstat (limited to '')
| -rw-r--r-- | modules/media/default.nix | 5 | ||||
| -rw-r--r-- | modules/media/torrent.nix | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/modules/media/default.nix b/modules/media/default.nix index e7399f0..a472992 100644 --- a/modules/media/default.nix +++ b/modules/media/default.nix @@ -1,7 +1,4 @@ -{ lib, ... }: -let - settings = import ../../settings.nix { inherit lib; }; -in +{ settings, ... }: { imports = [ ./torrent.nix ]; diff --git a/modules/media/torrent.nix b/modules/media/torrent.nix index cceb94d..1d2ee73 100644 --- a/modules/media/torrent.nix +++ b/modules/media/torrent.nix @@ -1,7 +1,4 @@ -{ pkgs, lib, ... }: -let - settings = import ../../settings.nix { inherit lib; }; -in +{ pkgs, settings, ... }: { environment.systemPackages = with pkgs; [ tremc |
