feat(hyprland): added input options for reduced repeat_delay and increased repeat_speed

This commit is contained in:
Zhongheng Liu 2024-08-09 18:26:26 +08:00
commit 6d14dac991
No known key found for this signature in database
16 changed files with 300 additions and 259 deletions

View file

@ -45,6 +45,7 @@
home = {
username = "${config.myUserName}";
homeDirectory = "/home/${config.myUserName}";
# copy wallpaper from assets
file = {
"wallpaper.png".source = ./assets/gruvbox-wallpaper.png;
};
@ -53,6 +54,7 @@
home.packages = with pkgs; [
protonvpn-gui
devenv
vlc
];
programs.git = {
enable = true;

View file

@ -1,5 +1,9 @@
{pkgs, config, lib, ...}:
{
pkgs,
config,
lib,
...
}: {
imports = [
./hyprland.nix
./hyprpaper.nix

View file

@ -1,8 +1,6 @@
{pkgs, ...}:
let
{pkgs, ...}: let
timeoutSeconds = 60;
in
{
in {
services.hypridle = {
enable = true;
settings = {

View file

@ -1,37 +1,48 @@
{config, pkgs, ... }:
{
config,
pkgs,
...
}: {
home.packages = with pkgs; [
foot
];
wayland.windowManager.hyprland = {
# Whether to enable Hyprland wayland compositor
# Whether to enable Hyprland wayland compositor
enable = true;
# The hyprland package to use
# The hyprland package to use
package = pkgs.hyprland;
plugins = with pkgs.hyprlandPlugins; [
hyprbars
hyprfocus
csgo-vulkan-fix
];
# Whether to enable XWayland
# Whether to enable XWayland
xwayland.enable = true;
settings = {
input = {
# xset rate 250 50 replacement on wayland...
# FAST MODE LET'S GOOO
repeat_rate = 50;
repeat_delay = 250;
};
misc = {
disable_hyprland_logo = true;
disable_splash_rendering = true;
font_family = "monospace";
};
"$mod" = "SUPER";
bind = [
bind =
[
"$mod, Q, killactive"
"$mod, D, exec, ${pkgs.fuzzel}/bin/fuzzel"
# firefox quickstart
"$mod, F, exec, ${pkgs.firefox}/bin/firefox"
# foot terminal
"$mod, Return, exec, ${pkgs.foot}/bin/foot -f 'BlexMono Nerd Font:size=16' zsh"
] ++ (
# workspaces
# binds $mod + [shift +] {1..10} to [move to] workspace {1..10}
]
++ (
# workspaces
# binds $mod + [shift +] {1..10} to [move to] workspace {1..10}
builtins.concatLists (builtins.genList (
x: let
ws = let
@ -46,15 +57,15 @@
10)
);
bindm = [
# mouse movements
# mouse movements
"$mod, mouse:272, movewindow"
"$mod, mouse:273, resizewindow"
"$mod ALT, mouse:272, resizewindow"
];
};
# Optional
# Whether to enable hyprland-session.target on hyprland startup
# Optional
# Whether to enable hyprland-session.target on hyprland startup
systemd.enable = true;
};
# ...
# ...
}

View file

@ -1,5 +1,9 @@
{pkgs, config, lib, ...}:
{
pkgs,
config,
lib,
...
}: {
programs.hyprlock = {
enable = true;
settings = {
@ -33,7 +37,6 @@
shadow_passes = 2;
}
];
};
};
}

View file

@ -1,12 +1,15 @@
{pkgs, config, ...}:
{
pkgs,
config,
...
}: {
services.hyprpaper = {
enable = true;
settings = {
ipc = "on";
splash = false;
preload = [ config.myWallPaperPathString ];
wallpaper = [ ",${config.myWallPaperPathString}" ];
preload = [config.myWallPaperPathString];
wallpaper = [",${config.myWallPaperPathString}"];
};
};
}

View file

@ -1,5 +1,8 @@
{pkgs, lib, ...}:
{
pkgs,
lib,
...
}: {
wayland.windowManager.sway = {
enable = true;
config = rec {

View file

@ -1,10 +1,15 @@
{pkgs, config, lib, ...}:
{
options = with lib; with types; {
myWallPaperPathString = mkOption { type = str; };
myUserName = mkOption { type = str; };
myDisplayName = mkOption { type = str; };
myEmail = mkOption { type = str; };
pkgs,
config,
lib,
...
}: {
options = with lib;
with types; {
myWallPaperPathString = mkOption {type = str;};
myUserName = mkOption {type = str;};
myDisplayName = mkOption {type = str;};
myEmail = mkOption {type = str;};
};
config = rec {
myUserName = "stvnliu";

View file

@ -15,7 +15,7 @@
./services/laptop.preset.nix
./hardware-configuration.nix
];
boot.supportedFilesystems = ["ntfs"];
security.pam.services.hyprlock = {};
hardware.bluetooth = {
enable = true;

View file

@ -1,4 +1,9 @@
{pkgs, config, lib, ...}: {
{
pkgs,
config,
lib,
...
}: {
services.greetd = {
enable = true;
settings = {

View file

@ -1,30 +1,34 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usb_storage" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "usb_storage" "usbhid" "sd_mod"];
boot.initrd.kernelModules = [];
boot.kernelModules = ["kvm-amd"];
boot.extraModulePackages = [];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/f9ff609f-6e72-43cf-917c-3bd3fde6c410";
fileSystems."/" = {
device = "/dev/disk/by-uuid/f9ff609f-6e72-43cf-917c-3bd3fde6c410";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/2E4F-3060";
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/2E4F-3060";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
options = ["fmask=0022" "dmask=0022"];
};
swapDevices = [ ];
swapDevices = [];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's

View file

@ -15,7 +15,7 @@
};
};
hardware.graphics.enable = true;
services.xserver.videoDrivers = [ "nvidia" ];
services.xserver.videoDrivers = ["nvidia"];
hardware.nvidia = {
prime = {
offload.enable = false;

View file

@ -1,5 +1,4 @@
{...}:
{
{...}: {
imports = [
./nginx.service.nix
./pipewire.service.nix

View file

@ -1,10 +1,14 @@
{config, pkgs, lib, ...}:
{
config,
pkgs,
lib,
...
}: {
# Type definitions for nix variables used in this configuration
options = with lib; with types; {
myUserName = mkOption { type = str; };
myHostName = mkOption { type = str; };
options = with lib;
with types; {
myUserName = mkOption {type = str;};
myHostName = mkOption {type = str;};
};
# Default values for this configuration