From 31bff51be305b476a9b52ec813cbf0826cdd46f6 Mon Sep 17 00:00:00 2001 From: Tomas Rivera Date: Sun, 17 May 2026 10:26:25 +0200 Subject: [PATCH] disk: moved rclone fuse patch --- hosts/laptop/configuration.nix | 4 ---- modules/nixos/disk.nix | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 1d3877c..32c32d4 100755 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -40,10 +40,6 @@ ../../modules/nixos/theme.nix # install theming packages and some quickshell stuff ]; - # removes rclone error - programs.fuse.userAllowOther = true; - programs.fuse.enable = true; - # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ diff --git a/modules/nixos/disk.nix b/modules/nixos/disk.nix index 30aaabb..0b9dbff 100644 --- a/modules/nixos/disk.nix +++ b/modules/nixos/disk.nix @@ -8,4 +8,8 @@ udiskie # removable disk automounter for udisks (pkgs.callPackage ../../modules/scripts/mountkdrive.nix {}) ]; + + # removes rclone error + programs.fuse.userAllowOther = true; + programs.fuse.enable = true; }