nixos/home/chrome/nixos.nix

16 lines
289 B
Nix
Raw Normal View History

2025-01-13 11:52:09 +08:00
{
pkgs,
lib,
config,
...
}:
with lib;
let
2024-01-27 22:14:03 +08:00
gui = with config.global.gpu; enable && session;
2025-01-13 11:52:09 +08:00
in
{
users.home.persist.directories = mkIf gui [ ".config/google-chrome" ];
security.chromiumSuidSandbox.enable = mkIf gui true;
environment.sessionVariables.NIXOS_OZONE_WL = "1";
}