feat: add quickshell

This commit is contained in:
2026-01-18 23:37:26 -08:00
parent 68588f5d72
commit 5c3252746f
11 changed files with 169 additions and 2 deletions

View File

@@ -21,6 +21,7 @@
roboto
roboto-mono
open-sans
comic-relief
];
fonts.fontDir.enable = true;
commonPackages = with pkgs; [

View File

@@ -3,6 +3,8 @@
lib,
config,
pkgs-before,
inputs,
meta,
...
}:
@@ -50,6 +52,7 @@
lm_sensors
fanctl
waypipe
inputs.quickshell.packages.${meta.architecture}.default
];
boot.kernelModules = [
"iptables"
@@ -202,6 +205,8 @@
"$mod, k, movefocus, u"
"$mod, j, movefocus, d"
"$mod, Space, togglesplit"
"$mod SHIFT, h, movewindow, l"
"$mod SHIFT, l, movewindow, r"
"$mod SHIFT, v, exec, bash -c ~/dotfiles/scripts/copy.sh"
"$mod SHIFT, s, exec, bash -c ~/dotfiles/scripts/screenshot.sh"
"$mod, p, exec, bash -c ~/dotfiles/scripts/project.sh"
@@ -235,14 +240,14 @@
",XF86MonBrightnessDown, exec, bash -c 'brightnessctl s 5%- && perc=$(( \$(brightnessctl get) * 100 / \$(brightnessctl max) )) && notify-send \"Brightness\" -h int:value:\$perc -h string:synchronous:brightness -u low'"
];
general = {
gaps_in = 0;
gaps_in = 5;
gaps_out = 10;
};
dwindle = {
preserve_split = true;
};
decoration = {
rounding = 0;
rounding = 10;
blur = {
enabled = false;
};

View File

@@ -36,6 +36,9 @@
programs.nix-ld.libraries = with pkgs; [
openssl
zlib
brotli
unixODBC
glib
];
};
}