25 lines
387 B
Nix
25 lines
387 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
hardware.graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
};
|
|
|
|
xdg = {
|
|
mime.enable = true;
|
|
menus.enable = true;
|
|
portal = {
|
|
enable = true;
|
|
extraPortals = [pkgs.xdg-desktop-portal-cosmic];
|
|
config.common.default = "cosmic";
|
|
};
|
|
};
|
|
|
|
services.xserver = {
|
|
enable = true;
|
|
videoDrivers = ["amdgpu"];
|
|
};
|
|
}
|