Add stuff thats in progress of getting upstreamed

This commit is contained in:
jopejoe1 2024-01-11 00:29:55 +01:00
parent dff0d40777
commit 55223e5c38
5 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{ self, ... }:
{
imports = [
./sshfs
];
}

View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
config = lib.mkIf (lib.any (fs: fs == "sshfs" || fs == "fuse.sshfs") config.boot.supportedFilesystems) {
system.fsPackages = [ pkgs.sshfs ];
};
}