From 6d14dac99165360c241eb3cca5536cfa1aca71e8 Mon Sep 17 00:00:00 2001 From: Zhongheng Liu Date: Fri, 9 Aug 2024 18:26:26 +0800 Subject: feat(hyprland): added input options for reduced repeat_delay and increased repeat_speed --- nixos/variables.nix | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) (limited to 'nixos/variables.nix') 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"; + }; } -- cgit