diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-08-09 18:26:26 +0800 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-08-09 18:26:26 +0800 |
commit | 6d14dac99165360c241eb3cca5536cfa1aca71e8 (patch) | |
tree | 002853580592d7a8b1cc6b1161ac32618aad1e20 /nixos/variables.nix | |
parent | 9e44996afdfa967accf5b98ed4f93258fc58a4df (diff) | |
download | nixos-configuration-6d14dac99165360c241eb3cca5536cfa1aca71e8.tar.gz nixos-configuration-6d14dac99165360c241eb3cca5536cfa1aca71e8.tar.bz2 nixos-configuration-6d14dac99165360c241eb3cca5536cfa1aca71e8.zip |
feat(hyprland): added input options for reduced repeat_delay and increased repeat_speed
Diffstat (limited to 'nixos/variables.nix')
-rw-r--r-- | nixos/variables.nix | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/nixos/variables.nix b/nixos/variables.nix index e6b111d..fdf47b4 100644 --- a/nixos/variables.nix +++ b/nixos/variables.nix @@ -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"; + }; } |