diff --git a/hosts/earth/configuration.nix b/hosts/earth/configuration.nix index a86ae4b..b2e8faa 100644 --- a/hosts/earth/configuration.nix +++ b/hosts/earth/configuration.nix @@ -44,6 +44,12 @@ }; services.fstrim.enable = true; services.mullvad-vpn.enable = true; + services.transmission = { + enable = true; + settings = { + download-dir = "${config.services.transmission.home}/dl"; + }; + }; # Bootloader. boot.loader.systemd-boot.enable = lib.mkForce false; @@ -90,6 +96,7 @@ sbctl vesktop mangohud + transmission_4 ]; hardware.nvidia = { diff --git a/modules/shell/zsh/aliases.nix b/modules/shell/zsh/aliases.nix index 316bf33..058fce7 100644 --- a/modules/shell/zsh/aliases.nix +++ b/modules/shell/zsh/aliases.nix @@ -29,6 +29,7 @@ with pkgs; { kys = "shutdown now"; gpl = "curl https://www.gnu.org/licenses/gpl-3.0.txt -o LICENSE"; agpl = "curl https://www.gnu.org/licenses/agpl-3.0.txt -o LICENSE"; + tsm = "transmission-remote"; g = "git"; n = "nix"; r = "rebuild";