mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:29:41 +00:00
12 lines
283 B
Nix
12 lines
283 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
services = {
|
||
|
# enable GVfs, a userspace virtual filesystem
|
||
|
# (allows viewing ftp,sftp,... directly from the file manager)
|
||
|
gvfs.enable = true;
|
||
|
|
||
|
# Storage daemon required for udiskie auto-mount
|
||
|
udisks2.enable = !config.boot.isContainer;
|
||
|
};
|
||
|
}
|