2024-05-29 13:42:13 -05:00
|
|
|
{pkgs, ...}: {
|
2023-09-05 22:39:17 -05:00
|
|
|
imports = [
|
|
|
|
./sway.nix
|
2024-03-27 10:38:30 -05:00
|
|
|
# ./hyprland.nix
|
2024-05-29 13:42:13 -05:00
|
|
|
./kde-plasma.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
|
2024-02-29 06:01:13 -06:00
|
|
|
./troubleshooting-tools.nix
|
2024-03-13 21:12:14 -05:00
|
|
|
./development-tools.nix
|
2023-09-05 22:39:17 -05:00
|
|
|
];
|
2023-10-02 14:40:35 -05:00
|
|
|
|
2024-05-29 13:42:13 -05:00
|
|
|
environment = {
|
|
|
|
variables = {
|
|
|
|
GTK_THEME = "Catppuccin-Mocha-Compact-Sapphire-Dark";
|
|
|
|
GTK_USE_PORTAL = "1";
|
|
|
|
};
|
|
|
|
|
|
|
|
systemPackages = with pkgs; [
|
2024-06-01 21:12:10 -05:00
|
|
|
marksman
|
|
|
|
markdown-oxide
|
2024-05-29 13:42:13 -05:00
|
|
|
gnupg
|
2024-06-01 21:12:10 -05:00
|
|
|
pinentry-tty
|
|
|
|
pinentry-curses
|
2024-05-29 13:42:13 -05:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2023-10-02 14:40:35 -05:00
|
|
|
hardware = {
|
|
|
|
opengl = {
|
|
|
|
enable = true;
|
|
|
|
driSupport32Bit = true;
|
|
|
|
driSupport = true;
|
|
|
|
};
|
|
|
|
};
|
2023-09-05 22:39:17 -05:00
|
|
|
}
|