This commit is contained in:
unexplrd
2025-02-07 19:12:52 +02:00
parent d946478e38
commit ef9864e6cd
5 changed files with 15 additions and 10 deletions

4
flake.lock generated
View File

@ -567,8 +567,8 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1738412721, "lastModified": 1738941289,
"narHash": "sha256-CNNmi10GcHXwYNa7KvQkfmDfSit/McqPdG0vIowBFtk=", "narHash": "sha256-5weUK2SGAW53dNJo53ZoH2gO/Ce8Qc0l9SVFpy/TcMM=",
"path": "/home/user/.config/Neve", "path": "/home/user/.config/Neve",
"type": "path" "type": "path"
}, },

View File

@ -36,8 +36,8 @@
}; };
boot = { boot = {
# kernelPackages = pkgs.linuxPackages_latest; # kernelPackages = pkgs.linuxPackages_cachyos;
kernelPackages = pkgs.linuxPackages_cachyos; kernelPackages = pkgs.linuxPackages_latest;
plymouth.enable = true; plymouth.enable = true;
loader.efi.canTouchEfiVariables = true; loader.efi.canTouchEfiVariables = true;
loader.systemd-boot = { loader.systemd-boot = {

View File

@ -19,7 +19,7 @@
name = "Bibata_Tinted"; name = "Bibata_Tinted";
size = 32; size = 32;
}; };
image = ../../wallpapers/wallhaven-o5p5ql.jpg; image = ../../wallpapers/wallhaven-yxyxzg.jpg;
opacity.terminal = 0.9; opacity.terminal = 0.9;
fonts = { fonts = {
sizes = { sizes = {

View File

@ -175,6 +175,8 @@ in {
cursor_size = toString config.stylix.cursor.size; cursor_size = toString config.stylix.cursor.size;
terminal = "ghostty"; terminal = "ghostty";
launcher = "walker"; launcher = "walker";
browser = "app.zen_browser.zen";
lockscreen = "hyprlock";
# clipboard = "copyq toggle"; # clipboard = "copyq toggle";
left = "n"; left = "n";
down = "e"; down = "e";
@ -246,7 +248,7 @@ in {
mode "2560x1440@180.000" mode "2560x1440@180.000"
variable-refresh-rate variable-refresh-rate
position x=0 y=0 position x=0 y=0
scale 1.25 scale 1.33
} }
output "PNP(AOC) 27V2G5 0x0000026C" { output "PNP(AOC) 27V2G5 0x0000026C" {
position x=1920 y=0 position x=1920 y=0
@ -349,8 +351,9 @@ in {
Mod+Return repeat=false { spawn "${terminal}"; } Mod+Return repeat=false { spawn "${terminal}"; }
Mod+Space repeat=false { spawn "${launcher}"; } Mod+Space repeat=false { spawn "${launcher}"; }
Super+Alt+L repeat=false { spawn "hyprlock"; } Mod+Shift+Space repeat=false { spawn "walker" "-m" "windows"; }
Super+Alt+B repeat=false { spawn "io.github.zen_browser.zen"; } Super+Alt+L repeat=false { spawn "${lockscreen}"; }
Super+Alt+B repeat=false { spawn "${browser}"; }
Super+Alt+V repeat=false { spawn "copyq" "toggle"; } Super+Alt+V repeat=false { spawn "copyq" "toggle"; }
Super+Alt+D repeat=false { spawn "dunstctl" "set-paused" "toggle"; } Super+Alt+D repeat=false { spawn "dunstctl" "set-paused" "toggle"; }
Super+Alt+C repeat=false { spawn "dunstctl" "close-all"; } Super+Alt+C repeat=false { spawn "dunstctl" "close-all"; }
@ -495,13 +498,16 @@ in {
Mod+Comma { set-column-width "-10%"; } Mod+Comma { set-column-width "-10%"; }
Mod+Period { set-column-width "+10%"; } Mod+Period { set-column-width "+10%"; }
Mod+T { switch-preset-column-width; } Mod+T { switch-preset-column-width; }
Mod+H { set-column-width "50%"; }
Mod+Shift+Comma { set-window-height "-10%"; } Mod+Shift+Comma { set-window-height "-10%"; }
Mod+Shift+Period { set-window-height "+10%"; } Mod+Shift+Period { set-window-height "+10%"; }
Mod+Shift+T { reset-window-height; } Mod+Shift+T { reset-window-height; }
Mod+M { maximize-column; } Mod+M { maximize-column; }
Mod+Ctrl+M { fullscreen-window; } Mod+G { switch-focus-between-floating-and-tiling; }
Mod+C { center-column; } Mod+C { center-column; }
Mod+Ctrl+M { fullscreen-window; }
Mod+Ctrl+G { toggle-window-floating; }
Mod+Ctrl+Q { close-window; } Mod+Ctrl+Q { close-window; }
Mod+Minus { set-column-width "-10%"; } Mod+Minus { set-column-width "-10%"; }

View File

@ -1,5 +1,4 @@
{ {
# pkgs,
lib, lib,
config, config,
... ...