89022e0d50
- add aarch64-linux to supported systems (flake + pkgs) - refactor host definitions into tty/desktop/laptop configurations - introduce sharedModules to reduce duplication - split system modules into base, gui, and laptop groups - add headless (tty) configuration feat(fish): add Ctrl+Delete and Alt+Delete bindings - Ctrl+Delete → kill-word - Alt+Delete → kill-token chore(hosts): remove explicit hostname from aesthetic chore(services): remove forced disable of speechd
13 lines
256 B
Nix
13 lines
256 B
Nix
{
|
|
systems = ["x86_64-linux" "aarch64-linux"];
|
|
|
|
perSystem = {pkgs, ...}: {
|
|
packages = {
|
|
# instant repl with automatic flake loading
|
|
repl = pkgs.callPackage ./repl {};
|
|
|
|
apple-fonts = pkgs.callPackage ./Apple-Fonts {};
|
|
};
|
|
};
|
|
}
|