summaryrefslogtreecommitdiff
path: root/hosts/muhammed/home
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2024-03-02 22:35:06 +0100
committerLinnnus <[email protected]>2024-03-02 22:35:16 +0100
commit9f6dc30a4534717f36134d122182627bd6b7f8aa (patch)
tree372a078f317feac9f595a8aa5ee9b3c5fb140a31 /hosts/muhammed/home
parente64b0a0dcd68eda8192a6c92b880b86af1673f19 (diff)
hosts/muhammed: Add qbittorrent
Diffstat (limited to 'hosts/muhammed/home')
-rw-r--r--hosts/muhammed/home/default.nix1
-rw-r--r--hosts/muhammed/home/qbittorrent/default.nix5
2 files changed, 6 insertions, 0 deletions
diff --git a/hosts/muhammed/home/default.nix b/hosts/muhammed/home/default.nix
index a3777b5..d7db61e 100644
--- a/hosts/muhammed/home/default.nix
+++ b/hosts/muhammed/home/default.nix
@@ -7,6 +7,7 @@
./noweb
./neovim
./dev-utils
+ ./qbittorrent
];
};
}
diff --git a/hosts/muhammed/home/qbittorrent/default.nix b/hosts/muhammed/home/qbittorrent/default.nix
new file mode 100644
index 0000000..0b7e2b1
--- /dev/null
+++ b/hosts/muhammed/home/qbittorrent/default.nix
@@ -0,0 +1,5 @@
+# Adds qbittorrent.
+# FIXME: Configuration is still stored mutably.
+{pkgs, ...}: {
+ home.packages = [pkgs.qbittorrent];
+}