mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 16:23:55 -05:00
Aly Raffauf
0ea64c1707
Some checks failed
nix-build / default-build (push) Has been cancelled
nix-build / fallarbor-build (push) Has been cancelled
nix-build / lavaridge-build (push) Has been cancelled
nix-build / mauville-build (push) Has been cancelled
nix-build / pacifidlog-build (push) Has been cancelled
nix-build / rustboro-build (push) Has been cancelled
nix-build / slateport-build (push) Has been cancelled
nix-check / fmt-check (push) Has been cancelled
nix-check / eval-check (push) Has been cancelled
21 lines
522 B
Nix
21 lines
522 B
Nix
self: {
|
|
imports = [
|
|
./aly
|
|
./dustin
|
|
./options.nix
|
|
];
|
|
|
|
programs.zsh.enable = true;
|
|
|
|
users = {
|
|
mutableUsers = false;
|
|
|
|
users.root.openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGcJBb7+ZxkDdk06A0csNsbgT9kARUN185M8k3Lq7E/d u0_a336@localhost" # termux on winona
|
|
(builtins.readFile ../secrets/publicKeys/aly_lavaridge.pub)
|
|
(builtins.readFile ../secrets/publicKeys/aly_mauville.pub)
|
|
(builtins.readFile ../secrets/publicKeys/aly_rustboro.pub)
|
|
];
|
|
};
|
|
}
|