fw + avahi

This commit is contained in:
2025-04-06 12:52:25 -04:00
parent cddaa01e99
commit 7705f24e0f
9 changed files with 83 additions and 58 deletions

View File

@@ -16,8 +16,8 @@ keybind = ctrl+left=goto_split:left
keybind = ctrl+right=goto_split:right
keybind = ctrl+up=goto_split:up
keybind = ctrl+down=goto_split:down
keybind = ctrl+]=next_tab
keybind = ctrl+[=previous_tab
keybind = ctrl+]=goto_split:next
keybind = ctrl+[=goto_split:previous
# Keybindings - Navigation - Tabs
keybind = ctrl+1=goto_tab:1

View File

@@ -5,6 +5,7 @@ let
mkIf
mkDefault
mkMerge
mkEnableOption
;
inherit (lib.${namespace}) mkOpt;
@@ -20,7 +21,7 @@ let
in
{
options.${namespace}.user = {
enable = mkOpt types.bool false "Whether to configure the user account.";
enable = mkEnableOption "Whether to configure the user account.";
email = mkOpt types.str "evan@reichard.io" "The email of the user.";
fullName = mkOpt types.str "Evan Reichard" "The full name of the user.";
home = mkOpt (types.nullOr types.str) home-directory "The user's home directory.";