espanso+miko: bring back up to date
This commit is contained in:
parent
a0a7d23fb5
commit
d80de89fa4
7 changed files with 27 additions and 37 deletions
|
@ -24,24 +24,3 @@ matches:
|
|||
- trigger: "e;"
|
||||
word: true
|
||||
replace: "⚫E>"
|
||||
|
||||
# keep the non-discord ones, too
|
||||
- trigger: "zo"
|
||||
word: true
|
||||
replace: "⚪O>"
|
||||
- trigger: "zt"
|
||||
word: true
|
||||
replace: "🔵T>"
|
||||
- trigger: "zk"
|
||||
word: true
|
||||
replace: "🟣K>"
|
||||
- trigger: "zw"
|
||||
word: true
|
||||
replace: "🟢W>"
|
||||
- trigger: "zs"
|
||||
word: true
|
||||
replace: "🔴S>"
|
||||
- trigger: "ze"
|
||||
word: true
|
||||
replace: "⚫E>"
|
||||
|
||||
|
|
|
@ -12,7 +12,6 @@ matches:
|
|||
word: true
|
||||
replace: "つ's"
|
||||
|
||||
|
||||
# non-discord chats
|
||||
- trigger: "zo"
|
||||
word: true
|
||||
|
@ -29,7 +28,7 @@ matches:
|
|||
- trigger: "zs"
|
||||
word: true
|
||||
replace: "🔴S>"
|
||||
- trigger: "ze"
|
||||
- trigger: "zE"
|
||||
word: true
|
||||
replace: "⚫E>"
|
||||
|
||||
|
@ -61,4 +60,3 @@ matches:
|
|||
- trigger: "zah"
|
||||
word: true
|
||||
replace: "🤍💙💜💚❤️🩶"
|
||||
|
||||
|
|
|
@ -25,10 +25,13 @@
|
|||
xdg.configFile.looking-glass.source = ../../../looking-glass;
|
||||
|
||||
# neovim
|
||||
xdg.configFile."nvim".source = ../../../nvim;
|
||||
xdg.configFile.nvim.source = ../../../nvim;
|
||||
|
||||
# tmux
|
||||
xdg.configFile."tmux".source = ../../../tmux;
|
||||
xdg.configFile.tmux.source = ../../../tmux;
|
||||
|
||||
# espanso
|
||||
xdg.configFile.espanso.source = ../../../espanso;
|
||||
|
||||
# kakoune
|
||||
#xdg.configFile."kak/autoload".source = ../../../kak/autoload;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{
|
||||
niri,
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
@ -34,6 +34,17 @@
|
|||
)
|
||||
];
|
||||
|
||||
# Also provide an xserver and plasma, for when we need accessibility.
|
||||
services.xserver.enable = true;
|
||||
services.desktopManager.plasma6.enable = true;
|
||||
|
||||
# Don't let Plasma override TLP with PPD.
|
||||
services.power-profiles-daemon.enable = lib.mkForce false;
|
||||
|
||||
|
||||
# Enable espanso, when possible.
|
||||
services.espanso.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
wtype
|
||||
wl-clipboard
|
||||
|
@ -129,10 +140,6 @@
|
|||
};
|
||||
};
|
||||
|
||||
# Provide Plasma6 for Talon support.
|
||||
services.xserver.enable = true;
|
||||
services.desktopManager.plasma6.enable = true;
|
||||
|
||||
# Use KDE connect.
|
||||
programs.kdeconnect.enable = true;
|
||||
|
||||
|
|
|
@ -12,13 +12,15 @@
|
|||
# Use nix, lix, and our local cache.
|
||||
substituters = [
|
||||
"https://cache.nixos.org"
|
||||
"https://cache.lix.systems"
|
||||
"https://niri.cachix.org"
|
||||
"https://cache.lix.systems" # for lix
|
||||
"https://niri.cachix.org" # for niri
|
||||
"https://cache.soopy.moe" # for t2-linux
|
||||
];
|
||||
trusted-public-keys = [
|
||||
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
||||
"cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o="
|
||||
"niri.cachix.org-1:Wv0OmO7PsuocRKzfDoJ3mulSl7Z6oezYhGhR+3W2964="
|
||||
"cache.soopy.moe-1:0RZVsQeR+GOh0VQI9rvnHz55nVXkFardDqfm4+afjPo="
|
||||
];
|
||||
|
||||
};
|
||||
|
|
|
@ -16,8 +16,9 @@
|
|||
|
||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||
|
||||
# Disable the deprecated (but still default true!) tinydfr option.
|
||||
# Use the more up-to-date touchBar option to enabel the touchbar.
|
||||
hardware.apple-t2.enableTinyDfr = false;
|
||||
hardware.apple.touchBar.enable = true;
|
||||
|
||||
# Bootloader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
|
|
|
@ -206,7 +206,7 @@ config = {
|
|||
-- Font Size Tweaks
|
||||
--
|
||||
font_overrides = {
|
||||
miko = 16,
|
||||
miko = 10,
|
||||
hinata = 16,
|
||||
valere = 12,
|
||||
utol = 13,
|
||||
|
|
Loading…
Add table
Reference in a new issue