nix/modules/desktop-usage.nix
2023-10-02 14:40:35 -05:00

17 lines
274 B
Nix

{ ... }: {
# TODO: add a DE and include either plasma or gnome as a fallback?
imports = [
./sway.nix
./user-installed-applications.nix
];
hardware = {
opengl = {
enable = true;
driSupport32Bit = true;
driSupport = true;
};
};
}