mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-08 18:36:53 +01:00
7 lines
185 B
Nix
7 lines
185 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
config = lib.mkIf (lib.any (fs: fs == "sshfs" || fs == "fuse.sshfs") config.boot.supportedFilesystems) {
|
|
system.fsPackages = [ pkgs.sshfs ];
|
|
};
|
|
}
|