summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2023-09-23 20:22:22 -0400
committerJon Santmyer <jon@jonsantmyer.com>2023-09-23 20:22:22 -0400
commit156e451fcd31120864ad037af6c5f37c5ce5a4e1 (patch)
tree07545bb592447d9977627e4ddd2a17893dacc5fb
parent606b7cf227fecd3919a4f0be1ece6af90af6a679 (diff)
downloadnix-config-156e451fcd31120864ad037af6c5f37c5ce5a4e1.tar.gz
nix-config-156e451fcd31120864ad037af6c5f37c5ce5a4e1.tar.bz2
nix-config-156e451fcd31120864ad037af6c5f37c5ce5a4e1.zip
add qbittorrent. add NAS settings
-rw-r--r--home/jon/home.nix2
-rw-r--r--systems/jonbox/filesystem.nix15
2 files changed, 16 insertions, 1 deletions
diff --git a/home/jon/home.nix b/home/jon/home.nix
index e8c81f7..e3e0300 100644
--- a/home/jon/home.nix
+++ b/home/jon/home.nix
@@ -27,6 +27,7 @@ in
thefuck
mpc-cli
pavucontrol
+ qbittorrent
];
home.activation.installAwesomeWMConfig = ''
@@ -38,7 +39,6 @@ in
programs.home-manager.enable = true;
- #xdg.configFile."kitty/kitty.conf".source = ../dotfiles/kitty/kitty.conf;
programs.git = {
enable = true;
userName = "Jon Santmyer";
diff --git a/systems/jonbox/filesystem.nix b/systems/jonbox/filesystem.nix
index 30dafc6..4faa688 100644
--- a/systems/jonbox/filesystem.nix
+++ b/systems/jonbox/filesystem.nix
@@ -12,6 +12,21 @@
fsType = "vfat";
};
+ fileSystems."/mnt/jonshare" = {
+ device = "homenas:/var/data/jon";
+ fsType = "nfs";
+ };
+
+ fileSystems."/mnt/plexshare" = {
+ device = "homenas:/var/data/plex";
+ fsType = "nfs";
+ };
+
+ fileSystems."/mnt/share" = {
+ device = "homenas:/var/data/shared";
+ fsType = "nfs";
+ };
+
swapDevices =
[ { device = "/dev/disk/by-uuid/acfc7ea5-0787-4e05-bcf1-20b7adb0f35c"; }
];