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

View File

@@ -46,6 +46,7 @@
./modules/gui/satty.nix
./modules/gui/mako.nix
./modules/gui/mangohud.nix
./modules/gui/browsers.nix
# status bars
./modules/bars/ashell.nix
./modules/bars/waybar.nix

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

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