Compare commits
3 commits
53a2609204
...
7943f84712
Author | SHA1 | Date | |
---|---|---|---|
Alexandre Cavalheiro | 7943f84712 | ||
Alexandre Cavalheiro | 9e271f8c52 | ||
Alexandre Cavalheiro | 5b0e693498 |
27
flake.nix
27
flake.nix
|
@ -29,8 +29,14 @@
|
||||||
let
|
let
|
||||||
specialArgs = inputs;
|
specialArgs = inputs;
|
||||||
modules = [
|
modules = [
|
||||||
./modules/nixos
|
./specific/desktop/nixos.nix
|
||||||
./specific/wizdesk/nixos.nix
|
home-manager.nixosModules.home-manager
|
||||||
|
{
|
||||||
|
home-manager.extraSpecialArgs = inputs;
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
|
home-manager.users.wizardlink = import ./specific/desktop/home-manager.nix;
|
||||||
|
}
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
nixpkgs.lib.nixosSystem { inherit system specialArgs modules; };
|
nixpkgs.lib.nixosSystem { inherit system specialArgs modules; };
|
||||||
|
@ -39,20 +45,19 @@
|
||||||
let
|
let
|
||||||
specialArgs = inputs;
|
specialArgs = inputs;
|
||||||
modules = [
|
modules = [
|
||||||
./modules/nixos
|
./specific/laptop/nixos.nix
|
||||||
./specific/wizlap/nixos.nix
|
home-manager.nixosModules.home-manager
|
||||||
|
{
|
||||||
|
home-manager.extraSpecialArgs = inputs;
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
|
home-manager.users.wizardlink = import ./specific/laptop/home-manager.nix;
|
||||||
|
}
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
nixpkgs.lib.nixosSystem { inherit system specialArgs modules; };
|
nixpkgs.lib.nixosSystem { inherit system specialArgs modules; };
|
||||||
};
|
};
|
||||||
|
|
||||||
homeConfigurations.wizardlink = home-manager.lib.homeManagerConfiguration {
|
|
||||||
inherit pkgs;
|
|
||||||
|
|
||||||
extraSpecialArgs = inputs;
|
|
||||||
modules = [ ./specific/home-manager.nix ];
|
|
||||||
};
|
|
||||||
|
|
||||||
formatter."${system}" = pkgs.nixfmt-rfc-style;
|
formatter."${system}" = pkgs.nixfmt-rfc-style;
|
||||||
|
|
||||||
homeManagerModules = {
|
homeManagerModules = {
|
||||||
|
|
|
@ -1,361 +1,373 @@
|
||||||
|
{ config, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
xdg.configFile."hypr/frappe.conf".source = builtins.fetchurl {
|
options.modules.hyprland.extraConfig = lib.mkOption {
|
||||||
url = "https://raw.githubusercontent.com/catppuccin/hyprland/main/themes/frappe.conf";
|
type = lib.types.str;
|
||||||
sha256 = "1clw669i1n3dhawdw4clmjv75fy3smycb5iqk3sanzpr3y0i4vwx";
|
default = "";
|
||||||
|
example = # hyprlang
|
||||||
|
''
|
||||||
|
monitor = DP-3, 1920x1080@74.973, 2560x0, 1
|
||||||
|
monitor = DP-2, 2560x1440@165.00301, 0x0, 1
|
||||||
|
'';
|
||||||
|
description = "Configuration to be appended to my own.";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable hypridle and hyprlock
|
config = {
|
||||||
services.hypridle = {
|
xdg.configFile."hypr/frappe.conf".source = builtins.fetchurl {
|
||||||
enable = true;
|
url = "https://raw.githubusercontent.com/catppuccin/hyprland/main/themes/frappe.conf";
|
||||||
settings = {
|
sha256 = "1clw669i1n3dhawdw4clmjv75fy3smycb5iqk3sanzpr3y0i4vwx";
|
||||||
general = {
|
|
||||||
after_sleep_cmd = "hyprctl dispatch dpms on";
|
|
||||||
ignore_dbus_inhibit = false;
|
|
||||||
lock_cmd = "hyprlock";
|
|
||||||
};
|
|
||||||
|
|
||||||
listener = [
|
|
||||||
{
|
|
||||||
timeout = 120;
|
|
||||||
on-timeout = "hyprlock";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
timeout = 180;
|
|
||||||
on-timeout = "hyprctl dispatch dpms off";
|
|
||||||
on-resume = "hyprctl dispatch dpms on";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
programs.hyprlock = {
|
# Enable hypridle and hyprlock
|
||||||
enable = true;
|
services.hypridle = {
|
||||||
extraConfig = # hyprlang
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
general = {
|
||||||
|
after_sleep_cmd = "hyprctl dispatch dpms on";
|
||||||
|
ignore_dbus_inhibit = false;
|
||||||
|
lock_cmd = "hyprlock";
|
||||||
|
};
|
||||||
|
|
||||||
|
listener = [
|
||||||
|
{
|
||||||
|
timeout = 120;
|
||||||
|
on-timeout = "hyprlock";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
timeout = 180;
|
||||||
|
on-timeout = "hyprctl dispatch dpms off";
|
||||||
|
on-resume = "hyprctl dispatch dpms on";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.hyprlock = {
|
||||||
|
enable = true;
|
||||||
|
extraConfig = # hyprlang
|
||||||
|
''
|
||||||
|
source = $HOME/.config/hypr/frappe.conf
|
||||||
|
|
||||||
|
$accent = $mauve
|
||||||
|
$accentAlpha = $mauveAlpha
|
||||||
|
$font = JetBrainsMono Nerd Font
|
||||||
|
|
||||||
|
# GENERAL
|
||||||
|
general {
|
||||||
|
disable_loading_bar = true
|
||||||
|
hide_cursor = true
|
||||||
|
}
|
||||||
|
|
||||||
|
# BACKGROUND
|
||||||
|
background {
|
||||||
|
monitor =
|
||||||
|
path = $HOME/internal/personal/wallpapers/wallhaven-2em8y6.jpg
|
||||||
|
blur_passes = 0
|
||||||
|
color = $base
|
||||||
|
}
|
||||||
|
|
||||||
|
# LAYOUT
|
||||||
|
label {
|
||||||
|
monitor =
|
||||||
|
text = Layout: $LAYOUT
|
||||||
|
color = $text
|
||||||
|
font_size = 25
|
||||||
|
font_family = $font
|
||||||
|
position = 30, -30
|
||||||
|
halign = left
|
||||||
|
valign = top
|
||||||
|
}
|
||||||
|
|
||||||
|
# TIME
|
||||||
|
label {
|
||||||
|
monitor =
|
||||||
|
text = $TIME
|
||||||
|
color = $text
|
||||||
|
font_size = 90
|
||||||
|
font_family = $font
|
||||||
|
position = -30, 0
|
||||||
|
halign = right
|
||||||
|
valign = top
|
||||||
|
}
|
||||||
|
|
||||||
|
# DATE
|
||||||
|
label {
|
||||||
|
monitor =
|
||||||
|
text = cmd[update:43200000] date +"%A, %d %B %Y"
|
||||||
|
color = $text
|
||||||
|
font_size = 25
|
||||||
|
font_family = $font
|
||||||
|
position = -30, -150
|
||||||
|
halign = right
|
||||||
|
valign = top
|
||||||
|
}
|
||||||
|
|
||||||
|
# USER AVATAR
|
||||||
|
image {
|
||||||
|
monitor =
|
||||||
|
path = $HOME/.face
|
||||||
|
size = 100
|
||||||
|
border_color = $accent
|
||||||
|
position = 0, 75
|
||||||
|
halign = center
|
||||||
|
valign = center
|
||||||
|
}
|
||||||
|
|
||||||
|
# INPUT FIELD
|
||||||
|
input-field {
|
||||||
|
monitor =
|
||||||
|
size = 300, 60
|
||||||
|
outline_thickness = 4
|
||||||
|
dots_size = 0.2
|
||||||
|
dots_spacing = 0.2
|
||||||
|
dots_center = true
|
||||||
|
outer_color = $accent
|
||||||
|
inner_color = $surface0
|
||||||
|
font_color = $text
|
||||||
|
fade_on_empty = false
|
||||||
|
placeholder_text = <span foreground="##$textAlpha"><i> Logged in as </i><span foreground="##$accentAlpha">$USER</span></span>
|
||||||
|
hide_input = false
|
||||||
|
check_color = $accent
|
||||||
|
fail_color = $red
|
||||||
|
fail_text = <i>$FAIL <b>($ATTEMPTS)</b></i>
|
||||||
|
capslock_color = $yellow
|
||||||
|
position = 0, -47
|
||||||
|
halign = center
|
||||||
|
valign = center
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
# Configure hyprland - we enable it in NixOS.
|
||||||
|
xdg.configFile."hypr/hyprland.conf".text = # hyprlang
|
||||||
''
|
''
|
||||||
source = $HOME/.config/hypr/frappe.conf
|
source = $HOME/.config/hypr/frappe.conf
|
||||||
|
${config.modules.hyprland.extraConfig}
|
||||||
|
|
||||||
$accent = $mauve
|
#
|
||||||
$accentAlpha = $mauveAlpha
|
# Please note not all available settings / options are set here.
|
||||||
$font = JetBrainsMono Nerd Font
|
# For a full list, see the wiki
|
||||||
|
#
|
||||||
|
|
||||||
|
autogenerated = 0 # remove this line to remove the warning
|
||||||
|
|
||||||
|
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
||||||
|
|
||||||
|
# Inject home-manager session variables
|
||||||
|
exec-once = /etc/profiles/per-user/wizardlink/etc/profile.d/hm-session-vars.sh
|
||||||
|
|
||||||
|
# Start the core services of my desktop
|
||||||
|
exec-once = ~/.local/share/scripts/hyprland/start_services.sh
|
||||||
|
|
||||||
|
# Open the apps I always use
|
||||||
|
exec-once = ~/.local/share/scripts/hyprland/start_apps.sh
|
||||||
|
|
||||||
|
# Set cursor size.
|
||||||
|
env = HYPRCURSOR_SIZE, 36
|
||||||
|
env = XCURSOR_SIZE, 36
|
||||||
|
|
||||||
|
# Source a file (multi-file configs)
|
||||||
|
# source = ~/.config/hypr/myColors.conf
|
||||||
|
|
||||||
|
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
|
||||||
|
input {
|
||||||
|
kb_layout =
|
||||||
|
kb_variant =
|
||||||
|
kb_model =
|
||||||
|
kb_options =
|
||||||
|
kb_rules =
|
||||||
|
|
||||||
|
follow_mouse = 1
|
||||||
|
float_switch_override_focus = 1
|
||||||
|
|
||||||
|
accel_profile = flat
|
||||||
|
force_no_accel = true
|
||||||
|
|
||||||
|
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
||||||
|
|
||||||
|
tablet {
|
||||||
|
output = DP-2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# GENERAL
|
|
||||||
general {
|
general {
|
||||||
disable_loading_bar = true
|
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||||
hide_cursor = true
|
|
||||||
|
gaps_in = 6
|
||||||
|
gaps_out = 18
|
||||||
|
border_size = 2
|
||||||
|
col.active_border = $base $surface0 $green 45deg
|
||||||
|
col.inactive_border = $base $surface0 $blue 45deg
|
||||||
|
|
||||||
|
layout = dwindle
|
||||||
}
|
}
|
||||||
|
|
||||||
# BACKGROUND
|
decoration {
|
||||||
background {
|
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||||
monitor =
|
|
||||||
path = $HOME/internal/personal/wallpapers/wallhaven-2em8y6.jpg
|
rounding = 8
|
||||||
blur_passes = 0
|
# FIXME: Check these deprecations.
|
||||||
color = $base
|
#blur = yes
|
||||||
|
#blur_size = 3
|
||||||
|
#blur_passes = 1
|
||||||
|
#blur_new_optimizations = on
|
||||||
|
|
||||||
|
drop_shadow = yes
|
||||||
|
shadow_range = 4
|
||||||
|
shadow_render_power = 3
|
||||||
|
col.shadow = $crust
|
||||||
}
|
}
|
||||||
|
|
||||||
# LAYOUT
|
animations {
|
||||||
label {
|
enabled = yes
|
||||||
monitor =
|
|
||||||
text = Layout: $LAYOUT
|
# Some default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more
|
||||||
color = $text
|
|
||||||
font_size = 25
|
bezier = myBezier, 0.05, 0.9, 0.1, 1.05
|
||||||
font_family = $font
|
|
||||||
position = 30, -30
|
animation = windows, 1, 7, myBezier
|
||||||
halign = left
|
animation = windowsOut, 1, 7, default, popin 80%
|
||||||
valign = top
|
animation = border, 1, 10, default
|
||||||
|
animation = borderangle, 1, 8, default
|
||||||
|
animation = fade, 1, 7, default
|
||||||
|
animation = workspaces, 1, 6, default
|
||||||
}
|
}
|
||||||
|
|
||||||
# TIME
|
dwindle {
|
||||||
label {
|
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more
|
||||||
monitor =
|
pseudotile = yes # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
|
||||||
text = $TIME
|
preserve_split = yes # you probably want this
|
||||||
color = $text
|
|
||||||
font_size = 90
|
|
||||||
font_family = $font
|
|
||||||
position = -30, 0
|
|
||||||
halign = right
|
|
||||||
valign = top
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# DATE
|
master {
|
||||||
label {
|
# See https://wiki.hyprland.org/Configuring/Master-Layout/ for more
|
||||||
monitor =
|
new_status = slave
|
||||||
text = cmd[update:43200000] date +"%A, %d %B %Y"
|
|
||||||
color = $text
|
|
||||||
font_size = 25
|
|
||||||
font_family = $font
|
|
||||||
position = -30, -150
|
|
||||||
halign = right
|
|
||||||
valign = top
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# USER AVATAR
|
gestures {
|
||||||
image {
|
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||||
monitor =
|
workspace_swipe = off
|
||||||
path = $HOME/.face
|
|
||||||
size = 100
|
|
||||||
border_color = $accent
|
|
||||||
position = 0, 75
|
|
||||||
halign = center
|
|
||||||
valign = center
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# INPUT FIELD
|
# Example windowrule v1
|
||||||
input-field {
|
# windowrule = float, ^(kitty)$
|
||||||
monitor =
|
# Example windowrule v2
|
||||||
size = 300, 60
|
# windowrulev2 = float,class:^(kitty)$,title:^(kitty)$
|
||||||
outline_thickness = 4
|
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
||||||
dots_size = 0.2
|
|
||||||
dots_spacing = 0.2
|
# Bind workspaces to specific monitors
|
||||||
dots_center = true
|
workspace = 1, monitor:DP-2
|
||||||
outer_color = $accent
|
workspace = 2, monitor:DP-3
|
||||||
inner_color = $surface0
|
workspace = 3, monitor:DP-2
|
||||||
font_color = $text
|
workspace = 4, monitor:DP-3
|
||||||
fade_on_empty = false
|
workspace = 5, monitor:DP-2
|
||||||
placeholder_text = <span foreground="##$textAlpha"><i> Logged in as </i><span foreground="##$accentAlpha">$USER</span></span>
|
workspace = 6, monitor:DP-3
|
||||||
hide_input = false
|
workspace = 7, monitor:DP-2
|
||||||
check_color = $accent
|
workspace = 8, monitor:DP-3
|
||||||
fail_color = $red
|
workspace = 9, monitor:DP-2
|
||||||
fail_text = <i>$FAIL <b>($ATTEMPTS)</b></i>
|
workspace = 0, monitor:DP-3
|
||||||
capslock_color = $yellow
|
|
||||||
position = 0, -47
|
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
||||||
halign = center
|
$mainMod = SUPER
|
||||||
valign = center
|
|
||||||
}
|
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
||||||
|
bind = $mainMod CTRL, F, fullscreenstate, -1 2
|
||||||
|
bind = $mainMod CTRL, L, exec, cliphist list | rofi -dmenu | cliphist decode | wl-copy
|
||||||
|
bind = $mainMod CTRL, P, exec, ~/.local/share/scripts/hyprland/screenshot_area.sh
|
||||||
|
bind = $mainMod CTRL, V, pin
|
||||||
|
bind = $mainMod SHIFT, F, fullscreen, 1
|
||||||
|
bind = $mainMod SHIFT, P, exec, ~/.local/share/scripts/hyprland/screenshot.sh
|
||||||
|
bind = $mainMod, C, killactive
|
||||||
|
bind = $mainMod, E, exec, thunar
|
||||||
|
bind = $mainMod, F, fullscreen
|
||||||
|
bind = $mainMod, M, exit
|
||||||
|
bind = $mainMod, O, togglesplit # dwindle
|
||||||
|
bind = $mainMod, P, pseudo # dwindle
|
||||||
|
bind = $mainMod, Q, exec, alacritty
|
||||||
|
bind = $mainMod, R, exec, rofi -show drun
|
||||||
|
bind = $mainMod, V, togglefloating
|
||||||
|
|
||||||
|
# Move focus with mainMod + arrow keys
|
||||||
|
bind = $mainMod, H, movefocus, l
|
||||||
|
bind = $mainMod, L, movefocus, r
|
||||||
|
bind = $mainMod, K, movefocus, u
|
||||||
|
bind = $mainMod, J, movefocus, d
|
||||||
|
|
||||||
|
# Switch workspaces with mainMod + [0-9]
|
||||||
|
bind = $mainMod, 1, workspace, 1
|
||||||
|
bind = $mainMod, 2, workspace, 2
|
||||||
|
bind = $mainMod, 3, workspace, 3
|
||||||
|
bind = $mainMod, 4, workspace, 4
|
||||||
|
bind = $mainMod, 5, workspace, 5
|
||||||
|
bind = $mainMod, 6, workspace, 6
|
||||||
|
bind = $mainMod, 7, workspace, 7
|
||||||
|
bind = $mainMod, 8, workspace, 8
|
||||||
|
#bind = $mainMod, 9, workspace, 9
|
||||||
|
#bind = $mainMod, 0, workspace, 10
|
||||||
|
|
||||||
|
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
||||||
|
bind = $mainMod SHIFT, 1, movetoworkspace, 1
|
||||||
|
bind = $mainMod SHIFT, 2, movetoworkspace, 2
|
||||||
|
bind = $mainMod SHIFT, 3, movetoworkspace, 3
|
||||||
|
bind = $mainMod SHIFT, 4, movetoworkspace, 4
|
||||||
|
bind = $mainMod SHIFT, 5, movetoworkspace, 5
|
||||||
|
bind = $mainMod SHIFT, 6, movetoworkspace, 6
|
||||||
|
bind = $mainMod SHIFT, 7, movetoworkspace, 7
|
||||||
|
bind = $mainMod SHIFT, 8, movetoworkspace, 8
|
||||||
|
bind = $mainMod SHIFT, 9, movetoworkspace, 9
|
||||||
|
bind = $mainMod SHIFT, 0, movetoworkspace, 10
|
||||||
|
|
||||||
|
# Scroll through existing workspaces with mainMod + scroll
|
||||||
|
bind = $mainMod, mouse_down, workspace, e+1
|
||||||
|
bind = $mainMod, mouse_up, workspace, e-1
|
||||||
|
|
||||||
|
# Move/resize windows with mainMod + LMB/RMB and dragging
|
||||||
|
bind = $mainMod SHIFT, H, movewindow, l
|
||||||
|
bind = $mainMod SHIFT, L, movewindow, r
|
||||||
|
bind = $mainMod SHIFT, K, movewindow, u
|
||||||
|
bind = $mainMod SHIFT, J, movewindow, d
|
||||||
|
bind = $mainMod ALT, H, resizeactive, -5% 0
|
||||||
|
bind = $mainMod ALT, L, resizeactive, 5% 0
|
||||||
|
bind = $mainMod ALT, K, resizeactive, 0 -5%
|
||||||
|
bind = $mainMod ALT, J, resizeactive, 0 5%
|
||||||
|
bindm = $mainMod, mouse:272, movewindow
|
||||||
|
bindm = $mainMod, mouse:273, resizewindow
|
||||||
|
|
||||||
|
# Volume changes
|
||||||
|
binde = , XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 1%+
|
||||||
|
binde = , XF86AudioLowerVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 1%-
|
||||||
|
bind = , XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
|
||||||
|
|
||||||
|
# Passthrough binds
|
||||||
|
bind = SHIFT CTRL, F12, pass, ^(com.obsproject.Studio)$
|
||||||
|
|
||||||
|
# Window rules for xwaylandvideobridge
|
||||||
|
windowrulev2 = opacity 0.0 override 0.0 override,class:^(xwaylandvideobridge)$
|
||||||
|
windowrulev2 = noanim,class:^(xwaylandvideobridge)$
|
||||||
|
windowrulev2 = nofocus,class:^(xwaylandvideobridge)$
|
||||||
|
windowrulev2 = noinitialfocus,class:^(xwaylandvideobridge)$
|
||||||
|
|
||||||
|
# Rules for windowkill
|
||||||
|
windowrule = noborder, ^(steam_app_2726450)$
|
||||||
|
windowrule = pin, ^(steam_app_2726450)$
|
||||||
|
windowrule = opacity 0.9, ^(steam_app_2726450)$
|
||||||
|
|
||||||
|
# Rules for Awakened PoE
|
||||||
|
windowrulev2 = tag +poe, class:^(steam_app_238960)$
|
||||||
|
windowrulev2 = allowsinput, tag:poe
|
||||||
|
|
||||||
|
windowrulev2 = tag +apt, class:^(awakened-poe-trade)$
|
||||||
|
windowrulev2 = float, tag:apt
|
||||||
|
windowrulev2 = noblur, tag:apt
|
||||||
|
windowrulev2 = noborder, tag:apt
|
||||||
|
windowrulev2 = noshadow, tag:apt
|
||||||
|
|
||||||
|
# Rules for anki
|
||||||
|
windowrulev2 = float, class:^(anki)$
|
||||||
|
|
||||||
|
windowrulev2 = tag +gw2, class:^(steam_app_1284210)$
|
||||||
|
windowrulev2 = noblur, tag:gw2
|
||||||
|
windowrulev2 = noborder, tag:gw2
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
# Configure hyprland - we enable it in NixOS.
|
|
||||||
xdg.configFile."hypr/hyprland.conf".text = # hyprlang
|
|
||||||
''
|
|
||||||
source = $HOME/.config/hypr/frappe.conf
|
|
||||||
|
|
||||||
#
|
|
||||||
# Please note not all available settings / options are set here.
|
|
||||||
# For a full list, see the wiki
|
|
||||||
#
|
|
||||||
|
|
||||||
autogenerated = 0 # remove this line to remove the warning
|
|
||||||
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Monitors/
|
|
||||||
monitor = DP-3, 1920x1080@74.973, 2560x0, 1
|
|
||||||
monitor = DP-2, 2560x1440@165.00301, 0x0, 1
|
|
||||||
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
|
||||||
|
|
||||||
# Inject home-manager session variables
|
|
||||||
exec-once = /etc/profiles/per-user/wizardlink/etc/profile.d/hm-session-vars.sh
|
|
||||||
|
|
||||||
# Start the core services of my desktop
|
|
||||||
exec-once = ~/.local/share/scripts/hyprland/start_services.sh
|
|
||||||
|
|
||||||
# Open the apps I always use
|
|
||||||
exec-once = ~/.local/share/scripts/hyprland/start_apps.sh
|
|
||||||
|
|
||||||
# Set cursor size.
|
|
||||||
env = HYPRCURSOR_SIZE, 36
|
|
||||||
env = XCURSOR_SIZE, 36
|
|
||||||
|
|
||||||
# Source a file (multi-file configs)
|
|
||||||
# source = ~/.config/hypr/myColors.conf
|
|
||||||
|
|
||||||
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
|
|
||||||
input {
|
|
||||||
kb_layout =
|
|
||||||
kb_variant =
|
|
||||||
kb_model =
|
|
||||||
kb_options =
|
|
||||||
kb_rules =
|
|
||||||
|
|
||||||
follow_mouse = 1
|
|
||||||
float_switch_override_focus = 1
|
|
||||||
|
|
||||||
accel_profile = flat
|
|
||||||
force_no_accel = true
|
|
||||||
|
|
||||||
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
|
||||||
|
|
||||||
tablet {
|
|
||||||
output = DP-2
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
general {
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
|
||||||
|
|
||||||
gaps_in = 6
|
|
||||||
gaps_out = 18
|
|
||||||
border_size = 2
|
|
||||||
col.active_border = $base $surface0 $green 45deg
|
|
||||||
col.inactive_border = $base $surface0 $blue 45deg
|
|
||||||
|
|
||||||
layout = dwindle
|
|
||||||
}
|
|
||||||
|
|
||||||
decoration {
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
|
||||||
|
|
||||||
rounding = 8
|
|
||||||
# FIXME: Check these deprecations.
|
|
||||||
#blur = yes
|
|
||||||
#blur_size = 3
|
|
||||||
#blur_passes = 1
|
|
||||||
#blur_new_optimizations = on
|
|
||||||
|
|
||||||
drop_shadow = yes
|
|
||||||
shadow_range = 4
|
|
||||||
shadow_render_power = 3
|
|
||||||
col.shadow = $crust
|
|
||||||
}
|
|
||||||
|
|
||||||
animations {
|
|
||||||
enabled = yes
|
|
||||||
|
|
||||||
# Some default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more
|
|
||||||
|
|
||||||
bezier = myBezier, 0.05, 0.9, 0.1, 1.05
|
|
||||||
|
|
||||||
animation = windows, 1, 7, myBezier
|
|
||||||
animation = windowsOut, 1, 7, default, popin 80%
|
|
||||||
animation = border, 1, 10, default
|
|
||||||
animation = borderangle, 1, 8, default
|
|
||||||
animation = fade, 1, 7, default
|
|
||||||
animation = workspaces, 1, 6, default
|
|
||||||
}
|
|
||||||
|
|
||||||
dwindle {
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more
|
|
||||||
pseudotile = yes # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
|
|
||||||
preserve_split = yes # you probably want this
|
|
||||||
}
|
|
||||||
|
|
||||||
master {
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Master-Layout/ for more
|
|
||||||
new_status = slave
|
|
||||||
}
|
|
||||||
|
|
||||||
gestures {
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
|
||||||
workspace_swipe = off
|
|
||||||
}
|
|
||||||
|
|
||||||
# Example windowrule v1
|
|
||||||
# windowrule = float, ^(kitty)$
|
|
||||||
# Example windowrule v2
|
|
||||||
# windowrulev2 = float,class:^(kitty)$,title:^(kitty)$
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
|
||||||
|
|
||||||
# Bind workspaces to specific monitors
|
|
||||||
workspace = 1, monitor:DP-2
|
|
||||||
workspace = 2, monitor:DP-3
|
|
||||||
workspace = 3, monitor:DP-2
|
|
||||||
workspace = 4, monitor:DP-3
|
|
||||||
workspace = 5, monitor:DP-2
|
|
||||||
workspace = 6, monitor:DP-3
|
|
||||||
workspace = 7, monitor:DP-2
|
|
||||||
workspace = 8, monitor:DP-3
|
|
||||||
workspace = 9, monitor:DP-2
|
|
||||||
workspace = 0, monitor:DP-3
|
|
||||||
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
|
||||||
$mainMod = SUPER
|
|
||||||
|
|
||||||
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
|
||||||
bind = $mainMod CTRL, F, fullscreenstate, -1 2
|
|
||||||
bind = $mainMod CTRL, L, exec, cliphist list | rofi -dmenu | cliphist decode | wl-copy
|
|
||||||
bind = $mainMod CTRL, P, exec, ~/.local/share/scripts/hyprland/screenshot_area.sh
|
|
||||||
bind = $mainMod CTRL, V, pin
|
|
||||||
bind = $mainMod SHIFT, F, fullscreen, 1
|
|
||||||
bind = $mainMod SHIFT, P, exec, ~/.local/share/scripts/hyprland/screenshot.sh
|
|
||||||
bind = $mainMod, C, killactive
|
|
||||||
bind = $mainMod, E, exec, thunar
|
|
||||||
bind = $mainMod, F, fullscreen
|
|
||||||
bind = $mainMod, M, exit
|
|
||||||
bind = $mainMod, O, togglesplit # dwindle
|
|
||||||
bind = $mainMod, P, pseudo # dwindle
|
|
||||||
bind = $mainMod, Q, exec, alacritty
|
|
||||||
bind = $mainMod, R, exec, rofi -show drun
|
|
||||||
bind = $mainMod, V, togglefloating
|
|
||||||
|
|
||||||
# Move focus with mainMod + arrow keys
|
|
||||||
bind = $mainMod, H, movefocus, l
|
|
||||||
bind = $mainMod, L, movefocus, r
|
|
||||||
bind = $mainMod, K, movefocus, u
|
|
||||||
bind = $mainMod, J, movefocus, d
|
|
||||||
|
|
||||||
# Switch workspaces with mainMod + [0-9]
|
|
||||||
bind = $mainMod, 1, workspace, 1
|
|
||||||
bind = $mainMod, 2, workspace, 2
|
|
||||||
bind = $mainMod, 3, workspace, 3
|
|
||||||
bind = $mainMod, 4, workspace, 4
|
|
||||||
bind = $mainMod, 5, workspace, 5
|
|
||||||
bind = $mainMod, 6, workspace, 6
|
|
||||||
bind = $mainMod, 7, workspace, 7
|
|
||||||
bind = $mainMod, 8, workspace, 8
|
|
||||||
#bind = $mainMod, 9, workspace, 9
|
|
||||||
#bind = $mainMod, 0, workspace, 10
|
|
||||||
|
|
||||||
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
|
||||||
bind = $mainMod SHIFT, 1, movetoworkspace, 1
|
|
||||||
bind = $mainMod SHIFT, 2, movetoworkspace, 2
|
|
||||||
bind = $mainMod SHIFT, 3, movetoworkspace, 3
|
|
||||||
bind = $mainMod SHIFT, 4, movetoworkspace, 4
|
|
||||||
bind = $mainMod SHIFT, 5, movetoworkspace, 5
|
|
||||||
bind = $mainMod SHIFT, 6, movetoworkspace, 6
|
|
||||||
bind = $mainMod SHIFT, 7, movetoworkspace, 7
|
|
||||||
bind = $mainMod SHIFT, 8, movetoworkspace, 8
|
|
||||||
bind = $mainMod SHIFT, 9, movetoworkspace, 9
|
|
||||||
bind = $mainMod SHIFT, 0, movetoworkspace, 10
|
|
||||||
|
|
||||||
# Scroll through existing workspaces with mainMod + scroll
|
|
||||||
bind = $mainMod, mouse_down, workspace, e+1
|
|
||||||
bind = $mainMod, mouse_up, workspace, e-1
|
|
||||||
|
|
||||||
# Move/resize windows with mainMod + LMB/RMB and dragging
|
|
||||||
bind = $mainMod SHIFT, H, movewindow, l
|
|
||||||
bind = $mainMod SHIFT, L, movewindow, r
|
|
||||||
bind = $mainMod SHIFT, K, movewindow, u
|
|
||||||
bind = $mainMod SHIFT, J, movewindow, d
|
|
||||||
bind = $mainMod ALT, H, resizeactive, -5% 0
|
|
||||||
bind = $mainMod ALT, L, resizeactive, 5% 0
|
|
||||||
bind = $mainMod ALT, K, resizeactive, 0 -5%
|
|
||||||
bind = $mainMod ALT, J, resizeactive, 0 5%
|
|
||||||
bindm = $mainMod, mouse:272, movewindow
|
|
||||||
bindm = $mainMod, mouse:273, resizewindow
|
|
||||||
|
|
||||||
# Volume changes
|
|
||||||
binde = , XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 1%+
|
|
||||||
binde = , XF86AudioLowerVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 1%-
|
|
||||||
bind = , XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
|
|
||||||
|
|
||||||
# Passthrough binds
|
|
||||||
bind = SHIFT CTRL, F12, pass, ^(com.obsproject.Studio)$
|
|
||||||
|
|
||||||
# Window rules for xwaylandvideobridge
|
|
||||||
windowrulev2 = opacity 0.0 override 0.0 override,class:^(xwaylandvideobridge)$
|
|
||||||
windowrulev2 = noanim,class:^(xwaylandvideobridge)$
|
|
||||||
windowrulev2 = nofocus,class:^(xwaylandvideobridge)$
|
|
||||||
windowrulev2 = noinitialfocus,class:^(xwaylandvideobridge)$
|
|
||||||
|
|
||||||
# Rules for windowkill
|
|
||||||
windowrule = noborder, ^(steam_app_2726450)$
|
|
||||||
windowrule = pin, ^(steam_app_2726450)$
|
|
||||||
windowrule = opacity 0.9, ^(steam_app_2726450)$
|
|
||||||
|
|
||||||
# Rules for Awakened PoE
|
|
||||||
windowrulev2 = tag +poe, class:^(steam_app_238960)$
|
|
||||||
windowrulev2 = allowsinput, tag:poe
|
|
||||||
|
|
||||||
windowrulev2 = tag +apt, class:^(awakened-poe-trade)$
|
|
||||||
windowrulev2 = float, tag:apt
|
|
||||||
windowrulev2 = noblur, tag:apt
|
|
||||||
windowrulev2 = noborder, tag:apt
|
|
||||||
windowrulev2 = noshadow, tag:apt
|
|
||||||
|
|
||||||
# Rules for anki
|
|
||||||
windowrulev2 = float, class:^(anki)$
|
|
||||||
|
|
||||||
windowrulev2 = tag +gw2, class:^(steam_app_1284210)$
|
|
||||||
windowrulev2 = noblur, tag:gw2
|
|
||||||
windowrulev2 = noborder, tag:gw2
|
|
||||||
'';
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
#
|
#
|
||||||
|
@ -28,4 +28,12 @@
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
EDITOR = "nvim";
|
EDITOR = "nvim";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Add monitor configuration to hyprland
|
||||||
|
modules.hyprland.extraConfig = # hyprlang
|
||||||
|
''
|
||||||
|
# See https://wiki.hyprland.org/Configuring/Monitors/
|
||||||
|
monitor = DP-3, 1920x1080@74.973, 2560x0, 1
|
||||||
|
monitor = DP-2, 2560x1440@165.00301, 0x0, 1
|
||||||
|
'';
|
||||||
}
|
}
|
|
@ -2,11 +2,16 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
../../modules/nixos
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./hardware.nix
|
./hardware.nix
|
||||||
./services.nix
|
./services.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
#
|
||||||
|
# NIXOS #
|
||||||
|
#
|
||||||
|
|
||||||
# This value determines the NixOS release from which the default
|
# This value determines the NixOS release from which the default
|
||||||
# settings for stateful data, like file locations and database versions
|
# settings for stateful data, like file locations and database versions
|
||||||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||||
|
@ -15,6 +20,10 @@
|
||||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||||
system.stateVersion = "23.05";
|
system.stateVersion = "23.05";
|
||||||
|
|
||||||
|
#
|
||||||
|
# SYSTEM #
|
||||||
|
#
|
||||||
|
|
||||||
# Configure options for mounted volumes.
|
# Configure options for mounted volumes.
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
"/".options = [ "compress=zstd" ];
|
"/".options = [ "compress=zstd" ];
|
38
specific/laptop/home-manager.nix
Normal file
38
specific/laptop/home-manager.nix
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{ ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
#
|
||||||
|
## HOME CONFIGURATION #
|
||||||
|
#
|
||||||
|
|
||||||
|
# Import configurations for better modularity.
|
||||||
|
imports = [
|
||||||
|
../../modules/home-manager
|
||||||
|
];
|
||||||
|
|
||||||
|
# Home Manager needs a bit of information about you and the paths it should
|
||||||
|
# manage.
|
||||||
|
home.username = "wizardlink";
|
||||||
|
home.homeDirectory = "/home/wizardlink";
|
||||||
|
|
||||||
|
# This value determines the Home Manager release that your configuration is
|
||||||
|
# compatible with. This helps avoid breakage when a new Home Manager release
|
||||||
|
# introduces backwards incompatible changes.
|
||||||
|
#
|
||||||
|
# You should not change this value, even if you update Home Manager. If you do
|
||||||
|
# want to update the value, then make sure to first check the Home Manager
|
||||||
|
# release notes.
|
||||||
|
home.stateVersion = "23.05"; # Please read the comment before changing.
|
||||||
|
|
||||||
|
home.sessionVariables = {
|
||||||
|
EDITOR = "nvim";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Add monitor configuration to hyprland
|
||||||
|
modules.hyprland.extraConfig = # hyprlang
|
||||||
|
''
|
||||||
|
# See https://wiki.hyprland.org/Configuring/Monitors/
|
||||||
|
monitor = DP-3, 1920x1080@74.973, 2561x0, 1
|
||||||
|
monitor = DP-2, 2560x1440@165.00301, 0x0, 1
|
||||||
|
'';
|
||||||
|
}
|
|
@ -2,9 +2,25 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
../../modules/nixos
|
||||||
./hardware.nix
|
./hardware.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
#
|
||||||
|
# NIXOS #
|
||||||
|
#
|
||||||
|
|
||||||
|
# This value determines the NixOS release from which the default
|
||||||
|
# settings for stateful data, like file locations and database versions
|
||||||
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||||
|
# this value at the release version of the first install of this system.
|
||||||
|
# Before changing this value read the documentation for this option
|
||||||
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||||
|
system.stateVersion = "23.05";
|
||||||
|
|
||||||
|
#
|
||||||
|
# SYSTEM #
|
||||||
|
#
|
||||||
networking.hostName = "wizlap"; # Define your hostname.
|
networking.hostName = "wizlap"; # Define your hostname.
|
||||||
|
|
||||||
# Open ports in the firewall.
|
# Open ports in the firewall.
|
Loading…
Reference in a new issue