18 lines
315 B
Nix
18 lines
315 B
Nix
{ config, pkgs, ... }: {
|
|
imports = [ ../lightdm.nix ];
|
|
fonts.fonts = with pkgs; [ iosevka ];
|
|
hardware.opengl = {
|
|
enable = true;
|
|
driSupport = true;
|
|
driSupport32Bit = true;
|
|
};
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
glxinfo
|
|
firefox-devedition-bin
|
|
pavucontrol
|
|
brightnessctl
|
|
];
|
|
};
|
|
}
|