2023-10-03 14:50:00 -05:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
inputs,
|
2023-10-18 09:14:19 -05:00
|
|
|
outputs,
|
2023-10-03 14:50:00 -05:00
|
|
|
system,
|
|
|
|
...
|
|
|
|
}: {
|
2023-09-05 22:39:17 -05:00
|
|
|
imports = [
|
|
|
|
./sway.nix
|
2023-11-29 21:27:15 -06:00
|
|
|
# ./hyprland.nix
|
2023-10-05 10:41:31 -05:00
|
|
|
# ./plasma.nix
|
|
|
|
# ./gnome.nix
|
2024-01-21 13:01:05 -06:00
|
|
|
./fonts.nix
|
2023-09-05 22:39:17 -05:00
|
|
|
./user-installed-applications.nix
|
2023-10-20 09:31:24 -05:00
|
|
|
./kde-connect.nix
|
2023-09-05 22:39:17 -05:00
|
|
|
];
|
2023-10-02 14:40:35 -05:00
|
|
|
|
2023-10-18 09:14:19 -05:00
|
|
|
nixpkgs.overlays = [outputs.overlays.modifications];
|
|
|
|
|
2023-10-02 14:40:35 -05:00
|
|
|
hardware = {
|
|
|
|
opengl = {
|
|
|
|
enable = true;
|
|
|
|
driSupport32Bit = true;
|
|
|
|
driSupport = true;
|
|
|
|
};
|
|
|
|
};
|
2023-09-05 22:39:17 -05:00
|
|
|
}
|