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,20 @@
|
|||
{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";
|
||||
myWallPaperPathString = "/home/${config.myUserName}/wallpaper.png";
|
||||
myDisplayName = "Zhongheng Liu";
|
||||
myEmail = "z.liu@outlook.com.gr";
|
||||
};
|
||||
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";
|
||||
myWallPaperPathString = "/home/${config.myUserName}/wallpaper.png";
|
||||
myDisplayName = "Zhongheng Liu";
|
||||
myEmail = "z.liu@outlook.com.gr";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue