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

62 lines
1.4 KiB
Nix
Raw Normal View History

2024-01-29 17:35:31 +09:00
{ pkgs, inputs, theme, lib, ... }: {
2023-08-31 20:22:44 +09:00
imports = [
2024-01-05 16:10:10 +09:00
./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;
2024-01-05 22:30:42 +09:00
latitude = "35.62370";
longitude = "134.85414";
2024-01-04 14:39:52 +09:00
};
gtk.enable = true;
stylix = {
2024-02-14 13:49:43 +09:00
image = lib.mkForce /etc/nixos/git/wallpapers/${theme}/wallpaper1.png;
2024-01-07 15:46:30 +09:00
opacity = {
2024-01-07 15:48:21 +09:00
desktop = 0.7;
popups = 0.7;
2024-01-07 15:46:30 +09:00
applications = 1.0;
2024-01-07 15:47:02 +09:00
terminal = 1.0;
2024-01-07 15:46:30 +09:00
};
2024-01-30 20:54:57 +09:00
autoEnable = true;
2024-01-04 14:39:52 +09:00
targets = {
2024-01-04 19:41:36 +09:00
kitty = {
2024-01-29 17:47:50 +09:00
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;
2024-01-06 20:33:33 +09:00
enableCenterBackColors = false;
enableLeftBackColors = false;
enableRightBackColors = false;
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 = {
2024-01-19 12:21:26 +09:00
package = pkgs.hack-font;
name = "Hack Nerd Font Regular";
2024-01-04 14:39:52 +09:00
};
sansSerif = {
2024-01-19 12:21:26 +09:00
package = pkgs.hack-font;
name = "Hack Nerd Font Regular";
2024-01-04 14:39:52 +09:00
};
monospace = {
2024-01-19 12:21:26 +09:00
package = pkgs.hack-font;
name = "Hack Nerd Font Mono Regular";
2024-01-04 14:39:52 +09:00
};
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
};
};
};
2023-11-20 20:02:34 +09:00
}