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 ./hardware-configuration.nix
./physical.nix ./physical.nix
../../profiles/core-hackens ../../profiles/core-hackens
# ./wiki.nix ./wiki.nix
./bridge.nix # ./bridge.nix
# ./webpass.nix # ./webpass.nix
# ./gha.nix # ./gha.nix
# ./sync.nix # ./sync.nix

View file

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

View file

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

View file

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

View file

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