chore: initialized project
This commit is contained in:
commit
d79fe97b7e
24 changed files with 786 additions and 0 deletions
13
roles/headless/access.nix
Normal file
13
roles/headless/access.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
|
||||
settings = {
|
||||
KbdInteractiveAuthentication = false;
|
||||
PasswordAuthentication = false;
|
||||
UseDns = false;
|
||||
X11Forwarding = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
3
roles/headless/bootloader.nix
Normal file
3
roles/headless/bootloader.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
}
|
||||
7
roles/headless/default.nix
Normal file
7
roles/headless/default.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
imports = [
|
||||
../device
|
||||
./access.nix
|
||||
./bootloader.nix
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue