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
23 lines
398 B
Nix
23 lines
398 B
Nix
let
|
|
host = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICL0B9moxOPY4XYim8826M+Tf0sWErwWljz1gkDZPwuF";
|
|
in {
|
|
"gitea_laptop.age".publicKeys = [
|
|
host
|
|
];
|
|
"hetzner_server.age".publicKeys = [
|
|
host
|
|
];
|
|
"aur.age".publicKeys = [
|
|
host
|
|
];
|
|
"ssh_config.age".publicKeys = [
|
|
host
|
|
];
|
|
"github_key.age".publicKeys = [
|
|
host
|
|
];
|
|
"sporestack_server.age".publicKeys = [
|
|
host
|
|
];
|
|
}
|