diff options
Diffstat (limited to '')
| m--------- | config/nvim | 0 | ||||
| -rw-r--r-- | config/qutebrowser/config.py | 2 | ||||
| -rw-r--r-- | config/zsh/zshrc | 2 | ||||
| -rw-r--r-- | configuration.nix | 12 |
4 files changed, 8 insertions, 8 deletions
diff --git a/config/nvim b/config/nvim -Subproject e8e23813616c5ab75781c3def1292655234484d +Subproject 01ae9b6e7d4d639f61dba51f5dc30ad934f8103 diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py index f469c83..d741669 100644 --- a/config/qutebrowser/config.py +++ b/config/qutebrowser/config.py @@ -286,7 +286,7 @@ config.set('content.media.video_capture', True, '*://meet.google.com') c.url.default_page = '~/.config/qutebrowser/homepage/index.html' c.url.start_pages = [c.url.default_page] -DEFAULT_SEARCH_ENGINE = 'd' +DEFAULT_SEARCH_ENGINE = 'go' c.url.searchengines = { # Main general 'd': 'https://duckduckgo.com/?q={}', diff --git a/config/zsh/zshrc b/config/zsh/zshrc index f82b493..cc97978 100644 --- a/config/zsh/zshrc +++ b/config/zsh/zshrc @@ -18,7 +18,7 @@ setopt share_history # share command history data export ZSH_CUSTOM_CONF_FILES="$HOME/.config/zsh"; # FZF integration -eval "$(fzf --zsh)"; +source <(fzf --zsh); for f in $ZSH_CUSTOM_CONF_FILES/*.zsh; do source $f; done; source $ZSH_CUSTOM_CONF_FILES/aliases.zsh; diff --git a/configuration.nix b/configuration.nix index e89159a..792179a 100644 --- a/configuration.nix +++ b/configuration.nix @@ -137,12 +137,12 @@ in enable = true; autorun = false; displayManager.startx.enable = true; - libinput = { - enable = true; - touchpad = { - tapping = true; - naturalScrolling = false; - }; + }; + services.libinput = { + enable = true; + touchpad = { + tapping = true; + naturalScrolling = false; }; }; fonts.packages = with pkgs; [ |
