hackens-org: prepare for first test

This commit is contained in:
Raito Bezarius 2021-12-14 19:20:02 +01:00
parent 2a6f52f7cf
commit f8af811d90
5 changed files with 12 additions and 4 deletions

View file

@ -10,8 +10,8 @@
./hardware-configuration.nix
./physical.nix
../../profiles/core-hackens
# ./wiki.nix
./bridge.nix
./wiki.nix
# ./bridge.nix
# ./webpass.nix
# ./gha.nix
# ./sync.nix

View file

@ -2,5 +2,6 @@
imports = [
./personal-users.nix
./ssh-server.nix
./static-dns.nix
];
}

View file

@ -1,4 +1,4 @@
{}:
{ ... }:
{
users.users = {
rlahfa = {

View file

@ -1,4 +1,4 @@
{ }:
{ ... }:
{
# Enable the OpenSSH daemon.
services.openssh.enable = true;

View file

@ -0,0 +1,7 @@
{ ... }:
{
networking.nameservers = [
"1.1.1.1"
"8.8.8.8"
];
}