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

60 lines
1.3 KiB
Nix
Raw Normal View History

2024-01-05 16:17:13 +09:00
{ pkgs, inputs, color, ... }: {
2023-08-31 20:22:44 +09:00
imports = [
2024-01-03 22:25:06 +09:00
inputs.stylix.homeManagerModules.stylix
2024-01-05 16:10:10 +09:00
./colors/${color}.nix
./components
./assets/waybar/scripts.nix
2023-08-31 20:22:44 +09:00
];
2024-01-03 22:28:18 +09:00
2024-01-04 14:39:52 +09:00
services.gammastep = {
enable = true;
provider = "geoclue2";
tray = true;
dawnTime = "6:00-7:45";
duskTime = "18:35-20:15";
};
gtk.enable = true;
stylix = {
autoEnable = true;
targets = {
2024-01-04 19:41:36 +09:00
vscode.enable = true;
kitty = {
enable = true;
2024-01-04 19:47:34 +09:00
variant256Colors = true;
2024-01-04 19:41:36 +09:00
};
2024-01-04 14:39:52 +09:00
waybar = {
2024-01-04 18:42:07 +09:00
enable = true;
enableCenterBackColors = true;
enableLeftBackColors = true;
enableRightBackColors = true;
2024-01-04 14:39:52 +09:00
};
};
fonts = {
2024-01-04 18:42:07 +09:00
sizes = {
2024-01-04 18:54:34 +09:00
desktop = 12;
popups = 12;
terminal = 12;
applications = 12;
2024-01-04 18:42:07 +09:00
};
2024-01-04 14:39:52 +09: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 20:02:34 +09:00
}