mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-12 20:18:49 +01:00
29 lines
551 B
Nix
29 lines
551 B
Nix
{ 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"
|
|
"--use-gl=desktop"
|
|
];
|
|
in {
|
|
imports = [
|
|
./common.nix
|
|
];
|
|
|
|
gtk = {
|
|
enable = true;
|
|
theme = {
|
|
name = "adw-gtk3-dark";
|
|
package = pkgs.adw-gtk3;
|
|
};
|
|
};
|
|
|
|
news.display = "silent";
|
|
}
|