38 lines
748 B
Lua
38 lines
748 B
Lua
local settings = {}
|
|
|
|
---@type string
|
|
settings["hostname"] = ""
|
|
|
|
---@type "desktop"|"laptop"
|
|
settings["profile"] = "desktop"
|
|
|
|
---@type boolean
|
|
settings["touchpad_natural_scroll"] = true
|
|
|
|
---@type string
|
|
settings["kb_layout"] = "us"
|
|
|
|
---@type "dwindle"|"master"|"scrolling"|"monocle"
|
|
settings["default_layout"] = "dwindle"
|
|
|
|
---@type string
|
|
settings["font_family"] = "FiraCode Nerd Font"
|
|
|
|
---@type "catppuccin"|"catppuccin-mocha"
|
|
settings["colorscheme"] = "catppuccin"
|
|
|
|
---@type boolean
|
|
settings["systemd"] = false
|
|
|
|
---@type table<string, boolean>
|
|
settings["modules"] = {
|
|
hypridle = true,
|
|
waybar = true,
|
|
swaync = true,
|
|
swayosd = true,
|
|
cliphist = true,
|
|
pypr = true,
|
|
}
|
|
|
|
return require("lua.lib.utils").extend_config(settings, "lua.user.settings")
|