This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/os/linux/nix/modules/de/graphics.nix

22 lines
366 B
Nix
Raw Normal View History

2020-10-24 10:03:34 -05:00
{ config, pkgs, ... }: {
2020-11-05 23:32:22 -06:00
imports = [ ../gdm.nix ];
fonts.fonts = with pkgs; [ iosevka ];
2020-10-24 10:03:34 -05:00
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
environment = {
systemPackages = with pkgs; [
2020-10-24 16:03:39 -05:00
glxinfo
2020-10-24 10:03:34 -05:00
firefox-devedition-bin
pavucontrol
brightnessctl
];
};
2020-10-24 21:48:02 -05:00
qt5 = {
platformTheme = "gtk2";
style = "gtk2";
};
2020-10-24 10:03:34 -05:00
}