580 lines
14 KiB
Nix
580 lines
14 KiB
Nix
{
|
|
monitors ? [ ],
|
|
}:
|
|
{
|
|
pkgs,
|
|
lib,
|
|
inputs,
|
|
config,
|
|
system,
|
|
osConfig,
|
|
...
|
|
}:
|
|
let
|
|
terminal = "ghostty";
|
|
|
|
execOnceScript = pkgs.writeShellScript "hyprlandExecOnce" ''
|
|
# Fix nemo open in terminal
|
|
dconf write /org/cinnamon/desktop/applications/terminal/exec "''\'${terminal}''\'" &
|
|
dconf write /org/cinnamon/desktop/applications/terminal/exec-arg "''\'''\'" &
|
|
|
|
systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP QT_QPA_PLATFORMTHEME &
|
|
'';
|
|
|
|
mainMod = "SUPER";
|
|
|
|
getCurrentSong = pkgs.writeShellScript "getSong" ''
|
|
song_info=$(playerctl metadata --format '{{title}} {{artist}}')
|
|
echo "$song_info"
|
|
'';
|
|
in
|
|
{
|
|
home.packages = with pkgs; [
|
|
mpvpaper # Video Wallpaper
|
|
hyprcursor
|
|
libnotify
|
|
];
|
|
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
systemd = {
|
|
enable = true;
|
|
variables = [ "--all" ];
|
|
};
|
|
package = null;
|
|
portalPackage = null;
|
|
|
|
plugins = (
|
|
with inputs.hyprland-plugins.packages.${system};
|
|
[
|
|
xtra-dispatchers
|
|
hyprwinwrap
|
|
]
|
|
);
|
|
|
|
settings = {
|
|
debug = {
|
|
disable_logs = true;
|
|
};
|
|
|
|
bind = import ./hypr/bind.nix {
|
|
inherit
|
|
mainMod
|
|
pkgs
|
|
monitors
|
|
config
|
|
lib
|
|
;
|
|
nvidia-offload-enabled = osConfig.hardware.nvidia.prime.offload.enableOffloadCmd;
|
|
};
|
|
|
|
bindm = [
|
|
# Move/resize windows with mainMod + LMB/RMB and dragging
|
|
''${mainMod}, mouse:272, movewindow''
|
|
''${mainMod}, mouse:273, resizewindow''
|
|
];
|
|
|
|
binde =
|
|
let
|
|
resizeStep = builtins.toString 20;
|
|
brightnessStep = builtins.toString 10;
|
|
volumeStep = builtins.toString 2;
|
|
in
|
|
[
|
|
'',XF86AudioRaiseVolume, exec, wpctl set-mute @DEFAULT_SINK@ 0 && wpctl set-volume @DEFAULT_SINK@ ${volumeStep}%+''
|
|
'',XF86AudioLowerVolume, exec, wpctl set-mute @DEFAULT_SINK@ 0 && wpctl set-volume @DEFAULT_SINK@ ${volumeStep}%-''
|
|
'',XF86MonBrightnessDown, exec, brightnessctl set ${brightnessStep}%-''
|
|
'',XF86MonBrightnessUp, exec, brightnessctl set ${brightnessStep}%+''
|
|
''${mainMod} CTRL, l, resizeactive, ${resizeStep} 0''
|
|
''${mainMod} CTRL, h, resizeactive, -${resizeStep} 0''
|
|
''${mainMod} CTRL, k, resizeactive, 0 -${resizeStep}''
|
|
''${mainMod} CTRL, j, resizeactive, 0 ${resizeStep}''
|
|
];
|
|
|
|
monitor = [
|
|
", prefered, 0x0, 1"
|
|
];
|
|
|
|
plugin = {
|
|
hyprwinrap = {
|
|
class = "kitty-bg";
|
|
};
|
|
|
|
touch_gestures = {
|
|
sensitivity = 4.0;
|
|
workspace_swipe_fingers = 3;
|
|
workspace_swipe_edge = "d";
|
|
long_press_delay = 400;
|
|
resize_on_border_long_press = true;
|
|
edge_margin = 10;
|
|
emulate_touchpad_swipe = false;
|
|
};
|
|
};
|
|
|
|
exec-once = [ "${execOnceScript}" ];
|
|
|
|
env = [
|
|
''XDG_CURRENT_DESKTOP, Hyprland''
|
|
''XDG_SESSION_DESKTOP, Hyprland''
|
|
];
|
|
|
|
workspace = (import ./hypr/workspace.nix { inherit monitors; });
|
|
}
|
|
// (import ./hypr/window.nix)
|
|
// (import ./hypr/windowrule.nix)
|
|
// (import ./hypr/input.nix);
|
|
};
|
|
|
|
# === gamemode === #
|
|
systemd.user.services.gamemode = lib.mkIf osConfig.programs.gamemode.enable {
|
|
Service = {
|
|
ExecStart = "${pkgs.gamemode}/bin/gamemoded -r";
|
|
};
|
|
};
|
|
|
|
# === Swww === #
|
|
services.swww = {
|
|
enable = true;
|
|
package = inputs.swww.packages.${system}.swww;
|
|
};
|
|
|
|
# === hyprpaper (Disabled) === #
|
|
services.hyprpaper = {
|
|
enable = false;
|
|
settings = {
|
|
# preload = wallpapers;
|
|
wallpaper = [ ", ~/.config/wallpapers/wall.png" ];
|
|
splash = false;
|
|
ipc = "on";
|
|
};
|
|
};
|
|
|
|
# === hyprlock === #
|
|
programs.hyprlock = {
|
|
enable = true;
|
|
package = inputs.hyprlock.packages.${system}.default;
|
|
importantPrefixes = [
|
|
"$"
|
|
"monitor"
|
|
"size"
|
|
"source"
|
|
];
|
|
|
|
settings =
|
|
let
|
|
font = "CaskaydiaCove Nerd Font";
|
|
font2 = "SF Pro Display Bold";
|
|
mainMonitor = if ((builtins.length monitors) > 0) then builtins.elemAt monitors 0 else "";
|
|
in
|
|
{
|
|
background = {
|
|
monitor = "";
|
|
path = "screenshot";
|
|
blur_passes = 3;
|
|
blur_size = 8;
|
|
contrast = 0.8916;
|
|
brightness = 0.8172;
|
|
vibrancy = 0.1696;
|
|
vibrancy_darkness = 0.0;
|
|
};
|
|
|
|
# GENERAL
|
|
general = {
|
|
no_fade_in = false;
|
|
grace = 0;
|
|
disable_loading_bar = false;
|
|
ignore_empty_input = true;
|
|
fail_timeout = 1000;
|
|
};
|
|
|
|
# TIME
|
|
label = [
|
|
{
|
|
monitor = "${mainMonitor}";
|
|
text = ''cmd[update:1000] echo "$(date +"%-I:%M%p")"'';
|
|
color = "rgba(250, 189, 47, .75)";
|
|
font_size = 120;
|
|
font_family = "${font2}";
|
|
position = "0, -140";
|
|
halign = "center";
|
|
valign = "top";
|
|
}
|
|
|
|
# DAY-DATE-MONTH
|
|
{
|
|
monitor = "${mainMonitor}";
|
|
text = ''cmd[update:1000] echo "<span>$(date '+%A, %d %B')</span>"'';
|
|
color = "rgba(225, 225, 225, 0.75)";
|
|
font_size = 30;
|
|
font_family = "${font2}";
|
|
position = "0, 200";
|
|
halign = "center";
|
|
valign = "center";
|
|
}
|
|
# USER
|
|
{
|
|
monitor = "${mainMonitor}";
|
|
text = "Hello, $USER";
|
|
color = "rgba(255, 255, 255, .65)";
|
|
font_size = 25;
|
|
font_family = "${font2}";
|
|
position = "0, -70";
|
|
halign = "center";
|
|
valign = "center";
|
|
}
|
|
# Current Song
|
|
{
|
|
monitor = "${mainMonitor}";
|
|
text = ''cmd[update:1000] echo "$(${getCurrentSong})"'';
|
|
color = "rgba(235, 219, 178, .75)";
|
|
font_size = 16;
|
|
font_family = "${font}, ${font2}";
|
|
position = "0, 80";
|
|
halign = "center";
|
|
valign = "bottom";
|
|
}
|
|
];
|
|
|
|
# LOGO
|
|
image = {
|
|
monitor = "${mainMonitor}";
|
|
path = "$HOME/.face";
|
|
border_size = 2;
|
|
border_color = "rgba(255, 255, 255, .75)";
|
|
size = 95;
|
|
rounding = -1;
|
|
rotate = 0;
|
|
reload_time = -1;
|
|
reload_cmd = "";
|
|
position = "0, 60";
|
|
halign = "center";
|
|
valign = "center";
|
|
};
|
|
|
|
# INPUT FIELD
|
|
input-field = [
|
|
{
|
|
monitor = "${mainMonitor}";
|
|
size = "290, 60";
|
|
outline_thickness = 2;
|
|
dots_size = 0.2; # Scale of input-field height, 0.2 - 0.8
|
|
dots_spacing = 0.2; # Scale of dots' absolute size, 0.0 - 1.0
|
|
dots_center = true;
|
|
outer_color = "rgba(0, 0, 0, 0)";
|
|
inner_color = "rgba(60, 56, 54, 0.35)";
|
|
font_color = "rgb(200, 200, 200)";
|
|
fail_color = "rgba(218, 53, 50, 0.56)";
|
|
fade_on_empty = false;
|
|
font_family = "${font2}";
|
|
placeholder_text = ''<i><span foreground="##ffffff99">Bruh, come back!</span></i>'';
|
|
hide_input = false;
|
|
position = "0, -140";
|
|
halign = "center";
|
|
valign = "center";
|
|
}
|
|
];
|
|
|
|
};
|
|
};
|
|
|
|
# === hypridle === #
|
|
services.hypridle = {
|
|
enable = true;
|
|
settings = {
|
|
general = {
|
|
lock_cmd = "pidof hyprlock || hyprlock";
|
|
before_sleep_cmd = "loginctl lock-session";
|
|
after_sleep_cmd = "hyprctl dispatch dpms on";
|
|
ignore_dbus_inhibit = false;
|
|
ignore_systemd_inhibit = false;
|
|
};
|
|
|
|
listener = [
|
|
# 2.5min -> set monitor backlight to minimum
|
|
{
|
|
timeout = 150;
|
|
on-timeout = "brightnessctl -s set 10";
|
|
on-resume = "brightnessctl -r";
|
|
}
|
|
# 2.5min -> turn off keyboard backlight
|
|
{
|
|
timeout = 150;
|
|
on-timeout = "brightnessctl -sd rgb:kbd_backlight set 0";
|
|
on-resume = "brightnessctl -rd rgb:kbd_backlight";
|
|
}
|
|
# 5min -> Lock screen
|
|
{
|
|
timeout = 300;
|
|
on-timeout = "loginctl lock-session";
|
|
}
|
|
# 5.5min -> Screen off
|
|
{
|
|
timeout = 330;
|
|
on-timeout = "hyprctl dispatch dpms off";
|
|
on-resume = "hyprctl dispatch dpms on";
|
|
}
|
|
# 30min -> Suspend pc
|
|
# {
|
|
# timeout = 1800;
|
|
# on-timeout = "systemctl suspend";
|
|
# }
|
|
];
|
|
};
|
|
};
|
|
|
|
# === hyprsunset === #
|
|
systemd.user.services.hyprsunset = {
|
|
Install = {
|
|
WantedBy = [ "graphical-session.target" ];
|
|
};
|
|
Unit = {
|
|
ConditionEnvironment = "WAYLAND_DISPLAY";
|
|
Description = "Blue light filter";
|
|
PartOf = [ "graphical-session.target" ];
|
|
After = [ "graphical-session.target" ];
|
|
};
|
|
Service = {
|
|
ExecStart = "${pkgs.hyprsunset}/bin/hyprsunset -t 3000k";
|
|
Restart = "always";
|
|
RestartSec = 2;
|
|
KillSignal = "SIGKILL"; # Hyprsunset seems not handle the SIGTERM signal
|
|
};
|
|
};
|
|
|
|
# === swaync === #
|
|
services.swaync = {
|
|
enable = true;
|
|
settings = {
|
|
control-center-height = 900;
|
|
control-center-margin-bottom = 20;
|
|
control-center-margin-left = 20;
|
|
control-center-margin-right = 20;
|
|
control-center-margin-top = 20;
|
|
control-center-width = 500;
|
|
fit-to-screen = false;
|
|
hide-on-action = true;
|
|
hide-on-clear = true;
|
|
image-visibility = "when-available";
|
|
keyboard-shortcuts = true;
|
|
layer = "overlay";
|
|
notification-body-image-height = 100;
|
|
notification-body-image-width = 200;
|
|
notification-icon-size = 64;
|
|
notification-window-width = 490;
|
|
positionX = "right";
|
|
positionY = "top";
|
|
script-fail-notify = true;
|
|
timeout = 3;
|
|
timeout-critical = 0;
|
|
timeout-low = 2;
|
|
transition-time = 200;
|
|
widgets = lib.mkForce [
|
|
"title"
|
|
"notifications"
|
|
"mpris"
|
|
];
|
|
};
|
|
style = # css
|
|
''
|
|
@define-color bgc rgba(0, 0, 0, 0.1);
|
|
@define-color borderc #ebdbb2;
|
|
@define-color textc #282828;
|
|
|
|
* {
|
|
font-family: JetBrainsMonoNerdFontMono;
|
|
font-weight: bold;
|
|
font-size: 15px;
|
|
border-width: 3px;
|
|
border-color: #ebdbb2;
|
|
}
|
|
|
|
.control-center .notification-row:focus,
|
|
.control-center .notification-row:hover {
|
|
opacity: 1;
|
|
background: @bgc;
|
|
}
|
|
|
|
.notification-row {
|
|
outline: none;
|
|
margin: 20px;
|
|
padding: 0;
|
|
}
|
|
|
|
.notification {
|
|
background: @textc;
|
|
margin: 0px;
|
|
border-radius: 6px;
|
|
border-width: 3px;
|
|
border-color: #ebdbb2;
|
|
}
|
|
|
|
.notification-content {
|
|
background: @textc;
|
|
padding: 7px;
|
|
margin: 0;
|
|
}
|
|
|
|
.close-button {
|
|
background: @textc;
|
|
color: @borderc;
|
|
text-shadow: none;
|
|
padding: 0;
|
|
border-radius: 20px;
|
|
margin-top: 9px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.close-button:hover {
|
|
box-shadow: none;
|
|
background: @borderc;
|
|
color: @textc;
|
|
transition: all .15s ease-in-out;
|
|
border: none;
|
|
}
|
|
|
|
.notification-action {
|
|
color: @bgc;
|
|
background: @textc;
|
|
}
|
|
|
|
.summary {
|
|
padding-top: 7px;
|
|
font-size: 13px;
|
|
color: @borderc;
|
|
}
|
|
|
|
.time {
|
|
font-size: 11px;
|
|
color: @borderc;
|
|
margin-right: 40px;
|
|
}
|
|
|
|
.body {
|
|
font-size: 12px;
|
|
color: @borderc;
|
|
}
|
|
|
|
.control-center {
|
|
background-color: @bgc;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.control-center-list {
|
|
background: transparent;
|
|
}
|
|
|
|
.control-center-list-placeholder {
|
|
opacity: .5;
|
|
}
|
|
|
|
.floating-notifications {
|
|
background: transparent;
|
|
}
|
|
|
|
.blank-window {
|
|
background: alpha(black, 0.1);
|
|
}
|
|
|
|
.widget-title {
|
|
color: @borderc;
|
|
padding: 10px 10px;
|
|
margin: 10px 10px 5px 10px;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.widget-title>button {
|
|
font-size: 1rem;
|
|
color: @borderc;
|
|
padding: 10px;
|
|
text-shadow: none;
|
|
background: @bgc;
|
|
box-shadow: none;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.widget-title>button:hover {
|
|
background: @borderc;
|
|
color: @textc;
|
|
}
|
|
|
|
.widget-label {
|
|
margin: 10px 10px 10px 10px;
|
|
}
|
|
|
|
.widget-label>label {
|
|
font-size: 1rem;
|
|
color: @borderc;
|
|
}
|
|
|
|
.widget-mpris {
|
|
color: @borderc;
|
|
padding: 5px 5px 5px 5px;
|
|
margin: 10px;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.widget-mpris>box>button {
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.widget-mpris-player {
|
|
padding: 5px 5px;
|
|
margin: 10px;
|
|
}
|
|
'';
|
|
};
|
|
|
|
systemd.user.services.swaync = lib.mkIf config.services.swaync.enable {
|
|
Unit = {
|
|
Requires = [ "waybar.service" ];
|
|
After = [
|
|
"waybar.service"
|
|
"graphical-session.target"
|
|
];
|
|
PartOf = [ "graphical-session.target" ];
|
|
};
|
|
Install = {
|
|
WantedBy = [ "graphical-session.target" ];
|
|
};
|
|
Service = {
|
|
ExecStart = lib.mkForce ''${pkgs.swaynotificationcenter}/bin/swaync --config ${
|
|
config.xdg.configFile."swaync/config.json".target
|
|
} --style ${config.xdg.configFile."swaync/style.css".target}'';
|
|
Environment = [
|
|
"XDG_CONFIG_HOME=/home/_dummy"
|
|
];
|
|
};
|
|
};
|
|
|
|
# === rofi === #
|
|
programs.rofi = {
|
|
enable = true;
|
|
package = pkgs.rofi-wayland;
|
|
plugins = with pkgs; [
|
|
rofi-emoji-wayland
|
|
(rofi-calc.override { rofi-unwrapped = rofi-wayland-unwrapped; })
|
|
];
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
NIXOS_OZONE_WL = "1";
|
|
NIXOS_XDG_OPEN_USE_PORTAL = "1";
|
|
|
|
GDK_BACKEND = "wayland";
|
|
QT_SCALE_FACTOR = "1";
|
|
QT_QPA_PLATFORM = "wayland-egl";
|
|
QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
|
|
QT_AUTO_SCREEN_SCALE_FACTOR = "1";
|
|
QT_IM_MODULES = "wayland;fcitx;ibus";
|
|
|
|
MOZ_ENABLE_WAYLAND = "1";
|
|
SDL_VIDEODRIVER = "wayland";
|
|
WLR_NO_HARDWARE_CURSORS = "1";
|
|
CLUTTER_BACKEND = "wayland";
|
|
EGL_PLATFORM = "wayland";
|
|
XDG_CURRENT_DESKTOP = "Hyprland";
|
|
XDG_SESSION_DESKTOP = "Hyprland";
|
|
XDG_SESSION_TYPE = "wayland";
|
|
};
|
|
}
|