10 lines
235 B
Nix
10 lines
235 B
Nix
|
{ pkgs
|
||
|
, lib
|
||
|
, config
|
||
|
, ... }: with lib; let
|
||
|
gui = with config.faucet.gui; ( enable && session );
|
||
|
in {
|
||
|
users.home.persist.directories = mkIf gui [ ".config/google-chrome" ];
|
||
|
security.chromiumSuidSandbox.enable = mkIf gui true;
|
||
|
}
|