hackens-org: prepare for first test
This commit is contained in:
parent
2a6f52f7cf
commit
f8af811d90
5 changed files with 12 additions and 4 deletions
|
@ -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
|
||||||
|
|
|
@ -2,5 +2,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./personal-users.nix
|
./personal-users.nix
|
||||||
./ssh-server.nix
|
./ssh-server.nix
|
||||||
|
./static-dns.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{}:
|
{ ... }:
|
||||||
{
|
{
|
||||||
users.users = {
|
users.users = {
|
||||||
rlahfa = {
|
rlahfa = {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
# Enable the OpenSSH daemon.
|
# Enable the OpenSSH daemon.
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
|
|
7
profiles/core-hackens/static-dns.nix
Normal file
7
profiles/core-hackens/static-dns.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
networking.nameservers = [
|
||||||
|
"1.1.1.1"
|
||||||
|
"8.8.8.8"
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue