nixos-config/modules/home-manager/awesome/simple/dotfiles/config/user.lua
2024-07-13 02:54:22 +09:00

23 lines
416 B
Lua

local M = {}
M.config = {
-- My profile config
user = "Gabriel Lima",
home = os.getenv("HOME"),
host = "aorus",
theme = "catppuccin_mocha",
font = "FiraCode Nerd Font Bold 10",
}
M.apps = {
-- My profile apps
terminal = "wezterm",
web_browser = "qutebrowser",
text_editor = "nvim",
file_manager = "wezterm -e yazi",
screnshoot = "flameshot",
image_viewer = "sxiv"
}
return M