2023-05-16 23:02:01 +02:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
chromeArgs = lib.strings.concatStringsSep " " [
|
|
|
|
"--force-dark-mode"
|
|
|
|
"--enable-features=WebUIDarkMode"
|
|
|
|
"--enable-smooth-scrolling"
|
|
|
|
"--ozone-platform-hint=auto"
|
|
|
|
"--ignore-gpu-blocklist"
|
|
|
|
"--enable-gpu-rasterization"
|
|
|
|
"--enable-zero-copy"
|
|
|
|
"--force-device-scale-factor=1.0"
|
|
|
|
];
|
|
|
|
nixGLWrap = import ./../utils/nixGLWrap.nix { inherit pkgs lib; };
|
|
|
|
in {
|
|
|
|
imports = [
|
|
|
|
./common.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
targets.genericLinux.enable = true;
|
|
|
|
news.display = "silent";
|
|
|
|
|
2023-09-10 15:41:07 +02:00
|
|
|
gtk = {
|
|
|
|
enable = true;
|
|
|
|
theme = {
|
|
|
|
name = "adw-gtk3-dark";
|
|
|
|
package = pkgs.adw-gtk3;
|
|
|
|
};
|
|
|
|
};
|
2023-05-16 23:02:01 +02:00
|
|
|
}
|