Initial content commit

This commit is contained in:
2025-10-03 16:11:03 +02:00
commit 9e7054d962
5 changed files with 269 additions and 0 deletions

29
configuration.nix Normal file
View File

@@ -0,0 +1,29 @@
{ modulesPath, ... }:
let
diskDevice = "/dev/sda";
sources = import ./npins;
in
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
(sources.disko + "/module.nix")
./single-disk-layout.nix
];
disko.devices.disk.main.device = diskDevice;
boot.loader.grub = {
devices = [ diskDevice ];
efiSupport = true;
efiInstallAsRemovable = true;
};
services.openssh.enable = true;
users.users.root.openssh.authorizedKeys.keys = [
"<your SSH key here>"
];
system.stateVersion = "25.05";
}