dotfiles/machines/desktop.nix

30 lines
551 B
Nix
Raw Normal View History

2023-05-17 01:18:35 +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"
"--use-gl=desktop"
];
2023-08-13 01:04:51 +02:00
in {
2023-05-17 01:18:35 +02:00
imports = [
./common.nix
];
2023-08-13 01:04:51 +02:00
gtk = {
enable = true;
theme = {
name = "adw-gtk3-dark";
package = pkgs.adw-gtk3;
};
};
2023-05-17 01:18:35 +02:00
2023-08-13 01:04:51 +02:00
news.display = "silent";
2023-05-17 01:18:35 +02:00
}