2 Commits

Author SHA1 Message Date
105fa3a0ae Various fixes and move to hyprland lua config 2026-06-13 23:05:38 +02:00
a353993421 feature/26-05 (#17)
Reviewed-on: #17
Co-authored-by: Armel van Ravels <armel@armel.nl>
Co-committed-by: Armel van Ravels <armel@armel.nl>
2026-06-12 15:47:01 +02:00
6 changed files with 133 additions and 118 deletions

View File

@@ -19,7 +19,7 @@
../modules/bambu-studio-flatpak.nix ../modules/bambu-studio-flatpak.nix
../modules/arduino-ide.nix ../modules/arduino-ide.nix
../modules/devenv.nix ../modules/devenv.nix
../modules/bitwarden.nix # ../modules/bitwarden.nix
]; ];
boot.kernelPackages = pkgs.linuxPackages_latest; boot.kernelPackages = pkgs.linuxPackages_latest;

View File

@@ -1,9 +1,9 @@
{ pkgs, ... }: { pkgs, config, ... }:
{ {
programs.firefox = { programs.firefox = {
enable = true; enable = true;
configPath = "${config.xdg.configHome}/mozilla/firefox";
profiles.default = { profiles.default = {
settings = { settings = {
"extensions.activeThemeID" = "firefox-compact-dark@mozilla.org"; "extensions.activeThemeID" = "firefox-compact-dark@mozilla.org";

View File

@@ -3,6 +3,8 @@
{ {
programs.neovim = { programs.neovim = {
enable = true; enable = true;
withRuby = false;
withPython3 = false;
defaultEditor = true; defaultEditor = true;
extraLuaPackages = ps: [ ps.magick ]; extraLuaPackages = ps: [ ps.magick ];
extraPackages = [ extraPackages = [
@@ -27,7 +29,7 @@
image-nvim image-nvim
]; ];
extraLuaConfig = '' initLua = ''
vim.cmd("colorscheme catppuccin-mocha") vim.cmd("colorscheme catppuccin-mocha")
-- Basic settings -- Basic settings
vim.o.number = true vim.o.number = true

View File

@@ -15,6 +15,7 @@
name = "Adwaita"; name = "Adwaita";
package = pkgs.adwaita-icon-theme; package = pkgs.adwaita-icon-theme;
}; };
gtk4.theme = null;
}; };
home.sessionVariables = { home.sessionVariables = {

View File

@@ -23,133 +23,145 @@ in
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
configType = "lua";
settings = { settings =
### MONITOR let
monitor = [ mkLuaInline = lib.generators.mkLuaInline;
"eDP-1,1920x1200,auto,1" toLua = lib.generators.toLua;
"DP-3,2440x1440,auto,1" mkArgs = args: { _args = args; };
",preferred,auto,1" bind =
]; keys: dispatcher: options:
mkArgs [
### VARIABLES keys
"$mod" = "SUPER"; dispatcher
"$terminal" = "kitty"; options
"$menu" = "rofi -show drun"; ];
"$bluetoothMenu" = "bzmenu --launcher rofi"; dsp = {
"$files" = "rofi -show filebrowser"; exec_cmd = app: mkLuaInline ''hl.dsp.exec_cmd("${app}")'';
focus = arg: mkLuaInline "hl.dsp.focus(${toLua { } arg})";
### BASIC LAYOUT window = {
general = { move = arg: mkLuaInline "hl.dsp.window.move(${toLua { } arg})";
layout = "dwindle"; drag = mkLuaInline "hl.dsp.window.drag()";
resize_on_border = true; resize = mkLuaInline "hl.dsp.window.resize()";
close = mkLuaInline "hl.dsp.window.close()";
kill = mkLuaInline "hl.dsp.window.kill()";
fullscreen = mkLuaInline "hl.dsp.window.fullscreen()";
};
exit = mkLuaInline "hl.dsp.exit()";
workspace = {
move = arg: mkLuaInline "hl.dsp.workspace.move(${toLua { } arg})";
};
}; };
mod = "SUPER";
decoration = { workspaces = lib.stringToCharacters "abcdefgimnopqrstuvwxyz";
inactive_opacity = 0.8; in
active_opacity = 0.9; {
rounding = 5; config = {
rounding_power = 2.5; general = {
blur = { resize_on_border = true;
enabled = true; allow_tearing = true;
brightness = 1.0;
contrast = 1.0;
noise = 0.01;
vibrancy = 0.2;
vibrancy_darkness = 0.5;
passes = 4;
size = 7;
popups = true;
popups_ignorealpha = 0.2;
}; };
shadow = { animations.enabled = true;
enabled = true;
color = "rgba(00000055)"; decoration = {
#ignore_window = true; inactive_opacity = 0.8;
offset = "0 15"; active_opacity = 0.9;
range = 100; rounding = 5;
render_power = 2; rounding_power = 2.5;
scale = 0.97; blur = {
enabled = true;
brightness = 1.0;
contrast = 1.0;
noise = 0.01;
vibrancy = 0.2;
vibrancy_darkness = 0.5;
passes = 4;
size = 7;
popups = true;
popups_ignorealpha = 0.2;
};
shadow = {
enabled = true;
color = "rgba(00000055)";
offset = "0 15";
range = 100;
render_power = 2;
scale = 0.97;
};
};
misc = {
focus_on_activate = true;
}; };
}; };
# Use the configurable option here (default `[ "waybar" ]`) bind = lib.flatten [
exec-once = (if cfg == null then { execOnce = [ "waybar" ]; } else cfg).execOnce; (bind "${mod} + Q" (dsp.window.kill) { })
(bind "${mod} + L" (dsp.exec_cmd "hyprlock") { })
(bind "${mod} + D" (dsp.exec_cmd "rofi -show drun") { })
(bind "${mod} + B" (dsp.exec_cmd "bzmenu --launcher rofi") { })
(bind "${mod} + F" (dsp.window.fullscreen) { })
(bind "${mod} + Z" (dsp.exec_cmd "hyprshot -m region") { })
(bind "${mod} + M" (dsp.exit) { })
(bind "${mod} + SPACE" (dsp.exec_cmd "firefox") { })
(bind "${mod} + RETURN" (dsp.exec_cmd "kitty") { })
### INPUT (bind "${mod} + SHIFT + LEFT" (dsp.window.move { direction = "l"; }) { })
input = { (bind "${mod} + SHIFT + DOWN" (dsp.window.move { direction = "d"; }) { })
kb_layout = "us"; (bind "${mod} + SHIFT + UP" (dsp.window.move { direction = "u"; }) { })
}; (bind "${mod} + SHIFT + RIGHT" (dsp.window.move { direction = "r"; }) { })
### KEYBINDINGS (bind "${mod} + LEFT" (dsp.focus { direction = "l"; }) { })
bind = [ (bind "${mod} + DOWN" (dsp.focus { direction = "d"; }) { })
# Apps (bind "${mod} + UP" (dsp.focus { direction = "u"; }) { })
"$mod, RETURN, exec, $terminal" (bind "${mod} + RIGHT" (dsp.focus { direction = "r"; }) { })
"$mod, D, exec, $menu"
"$mod, B, exec, $bluetoothMenu"
"$mod, G, exec, $files"
"$mod, Q, killactive"
"$mod, F, fullscreen"
"$mod, M, exit"
"$mod, L, exec, hyprlock"
# show/hide waybar (bind "${mod} + 1" (dsp.focus { workspace = 1; }) {})
"$mod, W, exec, pkill -SIGUSR1 -f '^waybar$'" (bind "${mod} + 2" (dsp.focus { workspace = 2; }) {})
(bind "${mod} + 3" (dsp.focus { workspace = 3; }) {})
(bind "${mod} + 4" (dsp.focus { workspace = 4; }) {})
(bind "${mod} + 5" (dsp.focus { workspace = 5; }) {})
(bind "${mod} + 6" (dsp.focus { workspace = 6; }) {})
(bind "${mod} + 7" (dsp.focus { workspace = 7; }) {})
(bind "${mod} + 8" (dsp.focus { workspace = 8; }) {})
(bind "${mod} + 9" (dsp.focus { workspace = 9; }) {})
# Focus (bind "${mod} + SHIFT + 1" (dsp.window.move { workspace = 1; }) {})
"$mod, LEFT, movefocus, l" (bind "${mod} + SHIFT + 2" (dsp.window.move { workspace = 2; }) {})
"$mod, RIGHT, movefocus, r" (bind "${mod} + SHIFT + 3" (dsp.window.move { workspace = 3; }) {})
"$mod, UP, movefocus, u" (bind "${mod} + SHIFT + 4" (dsp.window.move { workspace = 4; }) {})
"$mod, DOWN, movefocus, d" (bind "${mod} + SHIFT + 5" (dsp.window.move { workspace = 5; }) {})
(bind "${mod} + SHIFT + 6" (dsp.window.move { workspace = 6; }) {})
(bind "${mod} + SHIFT + 7" (dsp.window.move { workspace = 7; }) {})
(bind "${mod} + SHIFT + 8" (dsp.window.move { workspace = 8; }) {})
(bind "${mod} + SHIFT + 9" (dsp.window.move { workspace = 9; }) {})
# Workspaces (bind "XF86AudioLowerVolume" (dsp.exec_cmd "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-") {
"$mod, 1, workspace, 1" repeating = true;
"$mod, 2, workspace, 2" locked = true;
"$mod, 3, workspace, 3" })
"$mod, 4, workspace, 4" (bind "XF86AudioRaiseVolume" (dsp.exec_cmd "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+") {
"$mod, 5, workspace, 5" repeating = true;
"$mod, 6, workspace, 6" locked = true;
"$mod, 7, workspace, 7" })
"$mod, 8, workspace, 8" (bind "XF86AudioPlay" (dsp.exec_cmd "playerctl play-pause") { locked = true; })
"$mod, 9, workspace, 9" (bind "XF86AudioPrev" (dsp.exec_cmd "playerctl previous") { locked = true; })
(bind "XF86AudioNext" (dsp.exec_cmd "playerctl next") { locked = true; })
"$mod SHIFT, 1, movetoworkspace, 1" (bind "${mod} + mouse:272" dsp.window.drag { mouse = true; })
"$mod SHIFT, 2, movetoworkspace, 2" (bind "${mod} + mouse:273" dsp.window.resize { mouse = true; })
"$mod SHIFT, 3, movetoworkspace, 3"
"$mod SHIFT, 4, movetoworkspace, 4"
"$mod SHIFT, 5, movetoworkspace, 5"
"$mod SHIFT, 6, movetoworkspace, 6"
"$mod SHIFT, 7, movetoworkspace, 7"
"$mod SHIFT, 8, movetoworkspace, 8"
"$mod SHIFT, 9, movetoworkspace, 9"
# Window movement
"$mod SHIFT, LEFT, movewindow, l"
"$mod SHIFT, RIGHT, movewindow, r"
"$mod SHIFT, UP, movewindow, u"
"$mod SHIFT, DOWN, movewindow, d"
# Hyprshot
"$mod, Z, exec, hyprshot -m region"
# Media keys
", XF86AudioPlay, exec, playerctl play-pause"
", XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"
", XF86AudioRaiseVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+"
", XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"
", XF86AudioNext, exec, playerctl next"
", XF86AudioPrev, exec, playerctl previous"
", XF86Calculator, exec, speedcrunch"
]; ];
bindm = [ on = mkArgs [
"$mod, mouse:272, movewindow" "hyprland.start"
"$mod, mouse:273, resizewindow" (mkLuaInline ''
function()
hl.exec_cmd("waybar")
end'')
]; ];
}; };
}; };

View File

@@ -10,7 +10,7 @@
home-manager home-manager
legcord legcord
spotify spotify
protonvpn-gui proton-vpn
]; ];
shell = pkgs.zsh; shell = pkgs.zsh;
}; };