Configure fanny for disk and initssh module
All checks were successful
Evaluate Hydra Jobs / eval-hydra-jobs (pull_request) Successful in 3m33s
Evaluate Hydra Jobs / eval-hydra-jobs (push) Successful in 3m51s

This commit was merged in pull request #45.
This commit is contained in:
ahtlon
2025-01-05 20:38:38 +01:00
parent f44adbc815
commit a5d6cd6455
5 changed files with 55 additions and 10 deletions

View File

@@ -1,5 +1,7 @@
{ inputs, pkgs, ... }:
let
sshKeys = import ../ssh_keys.nix;
in
{
imports =
[ # Include the results of the hardware scan.
@@ -20,23 +22,26 @@
cacheurl = "https://cache.dynamicdiscord.de";
};
boot.initrd.systemd.enable = true;
boot.loader.systemd-boot.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
malobeo.disks = {
enable = true;
hostId = "1312acab";
hostId = "a3c3101f";
root = {
disk0 = "sda";
disk0 = "disk/by-id/ata-SAMSUNG_MZ7LN256HCHP-000L7_S20HNAAH200381";
};
storage = {
disks = ["sdb" "sdc"];
disks = ["disk/by-id/wwn-0x50014ee265b53b60" "disk/by-id/wwn-0x50014ee2bb0a194a"];
mirror = true;
};
};
malobeo.initssh = {
enable = true;
authorizedKeys = sshKeys.admins;
ethernetDrivers = ["r8169"];
};
services.tor = {
enable = true;
client.enable = true;