Compare commits

...

3 Commits

Author SHA1 Message Date
178f3b9c31 feat(toki-pona): apply in ghostty
All checks were successful
build / build-sydpc (push) Successful in 2m5s
build / build-fruitbook (push) Successful in 29s
build / build-deertopia (push) Successful in 42s
2026-03-17 11:43:54 -06:00
425f502bba fix(emacs): EXPAND TABS 2026-03-17 11:43:32 -06:00
077a709f65 fix(fruitbook): temporarily disable nixos-hardware
my laptop fans were going wild
2026-03-17 11:42:54 -06:00
4 changed files with 13 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
imports = [
./hardware.nix
./filesystems.nix
nixos-hardware.nixosModules.apple-macbook-pro-12-1
# nixos-hardware.nixosModules.apple-macbook-pro-12-1
];
sydnix = {

View File

@@ -15,6 +15,10 @@ in {
}))
];
programs.ghostty.settings.font-family = lib.mkBefore [
"sitelen seli kiwen mono juniko"
];
sydnix.hunspell.dictionaries = ds: with ds; [
tok
];

View File

@@ -64,5 +64,6 @@
syd/eshell
syd/treesit
syd/grammatical-framework
syd/tabs
syd/lsp
syd/custom))

View File

@@ -0,0 +1,7 @@
;;; -*- lexical-binding: t -*-
(require 'syd/base)
;; Disable tabs by default.
(setq-default indent-tabs-mode nil)
(provide 'syd/tabs)