This commit is contained in:
2024-12-01 03:34:59 +01:00
parent 950019a01f
commit 9e58ac79ff
12 changed files with 263 additions and 67 deletions

View File

@@ -1,4 +1,4 @@
{ config, clan-core, ... }:
{ config, lib, pkgs, clan-core, ... }:
{
imports = [
# Enables the OpenSSH server for remote access
@@ -7,6 +7,8 @@
clan-core.clanModules.root-password
clan-core.clanModules.user-password
clan-core.clanModules.state-version
# users
../users
];
# Locale service discovery and mDNS
@@ -26,4 +28,17 @@
uid = 1000;
openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys;
};
environment.systemPackages = [
pkgs.ddrescue
pkgs.gptfdisk
pkgs.ms-sys
pkgs.nvme-cli
pkgs.parted
pkgs.pciutils
pkgs.smartmontools
pkgs.testdisk
pkgs.usbutils
];
}