65 lines
1.5 KiB
Nix
65 lines
1.5 KiB
Nix
{ pkgs, theme, lib, ... }: {
|
|
imports = [
|
|
./components
|
|
./assets/waybar/scripts.nix
|
|
];
|
|
|
|
services.gammastep = {
|
|
enable = true;
|
|
latitude = "35.62370";
|
|
longitude = "134.85414";
|
|
};
|
|
|
|
gtk.enable = true;
|
|
|
|
# Disable tmux on Hyprland
|
|
programs.bash.sessionVariables = { DISABLE_TMUX = "true"; };
|
|
programs.fish.shellInit = { set DISABLE_TMUX "true"; };
|
|
|
|
stylix = {
|
|
image = lib.mkForce /etc/nixos/git/wallpapers/${theme}/wallpaper1.png;
|
|
opacity = {
|
|
desktop = 0.7;
|
|
popups = 0.7;
|
|
applications = 1.0;
|
|
terminal = 1.0;
|
|
};
|
|
autoEnable = true;
|
|
targets = {
|
|
kitty = {
|
|
enable = true;
|
|
variant256Colors = true;
|
|
};
|
|
waybar = {
|
|
enable = true;
|
|
enableCenterBackColors = false;
|
|
enableLeftBackColors = false;
|
|
enableRightBackColors = false;
|
|
};
|
|
};
|
|
fonts = {
|
|
sizes = {
|
|
desktop = 12;
|
|
popups = 12;
|
|
terminal = 12;
|
|
applications = 12;
|
|
};
|
|
serif = {
|
|
package = pkgs.hack-font;
|
|
name = "Hack Nerd Font Regular";
|
|
};
|
|
sansSerif = {
|
|
package = pkgs.hack-font;
|
|
name = "Hack Nerd Font Regular";
|
|
};
|
|
monospace = {
|
|
package = pkgs.hack-font;
|
|
name = "Hack Nerd Font Mono Regular";
|
|
};
|
|
emoji = {
|
|
package = pkgs.noto-fonts-emoji;
|
|
name = "Noto Color Emoji";
|
|
};
|
|
};
|
|
};
|
|
}
|