This commit is contained in:
2026-02-24 19:38:47 +01:00
parent 8a91a7ac1f
commit b33de71b55
2 changed files with 9 additions and 0 deletions

8
modules/gui/browsers.nix Normal file
View File

@@ -0,0 +1,8 @@
{ isNixOS, lib, ... }:
{
programs.chromium = {
enable = true;
package = lib.mkIf (!isNixOS) null;
};
}