nix/modules/desktop-usage.nix

17 lines
274 B
Nix
Raw Normal View History

2023-09-05 22:39:17 -05:00
{ ... }: {
2023-09-29 16:57:26 -05:00
# TODO: add a DE and include either plasma or gnome as a fallback?
2023-09-05 22:39:17 -05:00
imports = [
./sway.nix
./user-installed-applications.nix
];
2023-10-02 14:40:35 -05:00
hardware = {
opengl = {
enable = true;
driSupport32Bit = true;
driSupport = true;
};
};
2023-09-05 22:39:17 -05:00
}