.github
.vscode
docs
hydra
keys
lib
modules
pkgs
systems
users
alice
home
default.nix
home.nix
non-server.nix
secrets.yaml
default.nix
utils
.envrc
.gitconfig
.gitignore
.sops.yaml
CONTRIBUTING.md
README.md
checks.nix
flake.lock
flake.nix
shell.nix
statix.toml
treefmt.toml
19 lines
249 B
Nix
19 lines
249 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
name,
|
|
...
|
|
}:
|
|
import ../default.nix {
|
|
inherit
|
|
pkgs
|
|
lib
|
|
config
|
|
name
|
|
;
|
|
publicKeys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIP7oJjIYNRCRrUlhdGJgst6bzqubbKH0gjZYulQ1eVcZ alice@artemision"
|
|
];
|
|
}
|