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
|
||||
./physical.nix
|
||||
../../profiles/core-hackens
|
||||
# ./wiki.nix
|
||||
./bridge.nix
|
||||
./wiki.nix
|
||||
# ./bridge.nix
|
||||
# ./webpass.nix
|
||||
# ./gha.nix
|
||||
# ./sync.nix
|
||||
|
|
|
@ -2,5 +2,6 @@
|
|||
imports = [
|
||||
./personal-users.nix
|
||||
./ssh-server.nix
|
||||
./static-dns.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{}:
|
||||
{ ... }:
|
||||
{
|
||||
users.users = {
|
||||
rlahfa = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ }:
|
||||
{ ... }:
|
||||
{
|
||||
# Enable the OpenSSH daemon.
|
||||
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