Fix des mounts pour les home

nextcloud
RatCornu 2025-06-08 13:05:19 +02:00
parent 0d2c8bd7ab
commit 753c107382
No known key found for this signature in database
GPG Key ID: B3BE02E379E6E8E2
1 changed files with 13 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ ... }: { pkgs, ... }:
{ {
imports = [ imports = [
@ -25,5 +25,17 @@
''; '';
}; };
programs.fuse.userAllowOther = true;
systemd.services.autofs = {
path = with pkgs; [
bash
bindfs
gawk
logger
openldap
];
};
environment.systemPackages = with pkgs; [ bindfs ];
system.stateVersion = "25.05"; system.stateVersion = "25.05";
} }