1
1
Fork 0
nixos/options/custom/files/mnt.nix

16 lines
265 B
Nix
Raw Normal View History

{ config, lib, ... }:
with lib;
let
cfg = config.custom.files.mnt;
in
{
options.custom.files.mnt.enable = mkOption { default = false; };
config = mkIf cfg.enable {
# Set /mnt permissions
systemd.tmpfiles.rules = [ "z /mnt 0755 root root" ];
};
}