mirror of https://gitlab.crans.org/nounous/nixos
Fix des mounts pour les home
parent
0d2c8bd7ab
commit
753c107382
|
@ -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";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue