nixos-config/ahrc-laptop/home.nix

84 lines
2.5 KiB
Nix
Raw Normal View History

2024-10-15 09:45:54 +02:00
{ config, ... }:
2024-10-10 21:15:27 +02:00
{
2024-09-30 14:40:45 +02:00
imports = [ ../common/home.nix ];
home.stateVersion = "24.05";
programs.zsh = {
localVariables = {
PROMPT = ''
(%F{green}%B%n@%m%f%b)(%F{blue}%B%50<...<%5~%<<%b%f)(%B%?%b)
(%B%j%b%# '';
};
};
wayland.windowManager.hyprland = {
settings = {
"$col_accentdark" = "rgb(00ff00)";
"$col_accentlight" = "rgb(80ff80)";
"$col_inactive" = "rgba(80808040)";
"$col_urgent" = "rgb(ffd966)";
animations = { enabled = false; };
decoration = {
inactive_opacity = 1.0;
drop_shadow = false;
blur.enabled = false;
};
gestures.workspace_swipe = true;
2024-10-01 18:39:03 +02:00
input.kb_layout = "fr";
2024-09-30 14:40:45 +02:00
input.touchpad = {
disable_while_typing = false;
natural_scroll = true;
};
2024-09-30 14:40:45 +02:00
misc.animate_manual_resizes = false;
bindel = [
", XF86AudioRaiseVolume, exec, swayosd-client --output-volume=raise"
", XF86AudioLowerVolume, exec, swayosd-client --output-volume=lower"
", XF86AudioMute, exec, swayosd-client --output-volume=mute-toggle"
", XF86MonBrightnessUp, exec, swayosd-client --brightness=raise"
", XF86MonBrightnessDown, exec, swayosd-client --brightness=lower"
];
};
};
2024-10-10 21:15:27 +02:00
2024-10-15 09:51:07 +02:00
programs.niri.settings = {
input = {
keyboard.xkb.layout = "fr";
touchpad = {
tap = true;
natural-scroll = true;
accel-profile = "flat";
};
};
outputs."eDP-1".scale = 1;
layout.border.active.color = "#35f835e5";
binds = with config.lib.niri.actions; {
"XF86AudioRaiseVolume" = {
allow-when-locked = true;
action = spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.1+";
};
"XF86AudioLowerVolume" = {
allow-when-locked = true;
action = spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.1-";
};
"XF86AudioMute" = {
allow-when-locked = true;
action = spawn "wpctl" "set-mute" "@DEFAULT_AUDIO_SINK@" "toggle";
};
"XF86MonBrightnessDown" = {
allow-when-locked = true;
action = spawn "brightnessctl" "set" "10-";
2024-10-12 14:47:10 +02:00
};
2024-10-15 09:51:07 +02:00
"XF86MonBrightnessUp" = {
allow-when-locked = true;
action = spawn "brightnessctl" "set" "+10";
2024-10-12 14:47:10 +02:00
};
2024-10-15 09:51:07 +02:00
"Alt+TouchpadScrollDown".action = spawn "brightnessctl" "set" "10-";
"Alt+TouchpadScrollUp".action = spawn "brightnessctl" "set" "+10";
"XF86Display".action = power-off-monitors;
2024-10-12 14:47:10 +02:00
};
};
}