16 lines
213 B
Nix
16 lines
213 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
let
|
|
unstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.stdenv.hostPlatform.system};
|
|
in
|
|
{
|
|
imports = [
|
|
../shared/nixos-server.nix
|
|
];
|
|
|
|
networking.hostName = "vergil";
|
|
}
|