7 lines
146 B
Nix
7 lines
146 B
Nix
|
{ pkgs, ... }: {
|
||
|
services.fstrim.enable = true;
|
||
|
services.gvfs.enable = true;
|
||
|
|
||
|
environment.systemPackages = with pkgs; [ gvfs nfs-utils ];
|
||
|
}
|