feat(hyprland): added input options for reduced repeat_delay and increased repeat_speed
This commit is contained in:
parent
9e44996afd
commit
6d14dac991
16 changed files with 300 additions and 259 deletions
|
@ -1,15 +1,19 @@
|
|||
{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; };
|
||||
};
|
||||
|
||||
# Default values for this configuration
|
||||
config = {
|
||||
myUserName = "stvnliu";
|
||||
myHostName = "homelab-nix";
|
||||
};
|
||||
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;};
|
||||
};
|
||||
|
||||
# Default values for this configuration
|
||||
config = {
|
||||
myUserName = "stvnliu";
|
||||
myHostName = "homelab-nix";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue