nix/home-manager/common/desktops/hyprland/default.nix

59 lines
1.3 KiB
Nix
Raw Normal View History

2024-01-05 08:17:13 +01:00
{ pkgs, inputs, color, ... }: {
2023-08-31 13:22:44 +02:00
imports = [
2024-01-03 14:25:06 +01:00
inputs.stylix.homeManagerModules.stylix
2024-01-05 08:10:10 +01:00
./colors/${color}.nix
./components
./assets/waybar/scripts.nix
2023-08-31 13:22:44 +02:00
];
2024-01-03 14:28:18 +01:00
2024-01-04 06:39:52 +01:00
services.gammastep = {
enable = true;
tray = true;
2024-01-05 13:57:03 +01:00
longitude = 35.62370;
latitude = 134.85414;
2024-01-04 06:39:52 +01:00
};
gtk.enable = true;
stylix = {
autoEnable = true;
targets = {
2024-01-04 11:41:36 +01:00
vscode.enable = true;
kitty = {
enable = true;
2024-01-04 11:47:34 +01:00
variant256Colors = true;
2024-01-04 11:41:36 +01:00
};
2024-01-04 06:39:52 +01:00
waybar = {
2024-01-04 10:42:07 +01:00
enable = true;
enableCenterBackColors = true;
enableLeftBackColors = true;
enableRightBackColors = true;
2024-01-04 06:39:52 +01:00
};
};
fonts = {
2024-01-04 10:42:07 +01:00
sizes = {
2024-01-04 10:54:34 +01:00
desktop = 12;
popups = 12;
terminal = 12;
applications = 12;
2024-01-04 10:42:07 +01:00
};
2024-01-04 06:39:52 +01:00
serif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Serif";
};
sansSerif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans";
};
monospace = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans Mono";
};
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
};
};
};
2023-11-20 12:02:34 +01:00
}