mirror of
https://github.com/ItsDrike/nixdots
synced 2025-07-01 05:20:43 +00:00
Add workstation-specific settings
This commit is contained in:
parent
fca6296841
commit
27b0d375f2
18 changed files with 258 additions and 9 deletions
11
system/roles/workstation/services/mount.nix
Normal file
11
system/roles/workstation/services/mount.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue