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; }