Compare commits

..

3 Commits

Author SHA1 Message Date
7d0351df18 Espanso for ..date expansion etc. 2024-12-27 00:25:40 +01:00
c256593693 Simplify caps-lock remapping
It turns out that all other methods I have tried overrides disabling the
touchpad while typing. Only interception-tools seems to work.
2024-12-26 20:15:06 +01:00
2eff7b338c Add nixos configuration and build script 2024-12-26 12:32:58 +01:00
2 changed files with 4 additions and 6 deletions

View File

@ -3,7 +3,7 @@
function install_pkg() {
if hash apt-get 2>/dev/null; then
sudo -n apt-get update
sudo -n DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ${@}
sudo -n DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ${$}
return
fi
@ -87,10 +87,8 @@ function main() {
install_pkg locales less
if [[ ${REMOTE_CONTAINERS} || ${DEVCONTAINER} ]]; then
echo "sv_SE.UTF-8 UTF-8" | sudo tee -a /etc/locale.gen
sudo locale-gen
fi
#echo "sv_SE.UTF-8 UTF-8" | sudo tee -a /etc/locale.gen
#sudo locale-gen
setup_fish
setup_ssh

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
set -e
cd "$(dirname "$0")/.."