set up external device automounting

This commit is contained in:
insects 2024-08-10 19:30:55 +02:00
parent 36f3fe395b
commit daf734ba0c
3 changed files with 7 additions and 2 deletions

View file

@ -2,4 +2,9 @@
imports = [ imports = [
./audio.nix ./audio.nix
]; ];
# auto mount external drives
services.devmon.enable = true;
services.gvfs.enable = true;
services.udisks2.enable = true;
} }

View file

@ -60,7 +60,7 @@
lu = { lu = {
shell = pkgs.fish; shell = pkgs.fish;
isNormalUser = true; isNormalUser = true;
extraGroups = ["wheel"]; extraGroups = ["wheel" "storage"];
}; };
}; };

View file

@ -60,7 +60,7 @@
lu = { lu = {
shell = pkgs.fish; shell = pkgs.fish;
isNormalUser = true; isNormalUser = true;
extraGroups = ["wheel"]; extraGroups = ["wheel" "storage"];
}; };
}; };