grimm-nixos-laptop/specific/grimmauld-nixos-server/configuration.nix

26 lines
507 B
Nix

{
lib,
config,
inputs,
pkgs,
...
}:
let
inherit (config.networking) domain;
in
{
imports = [ ./hardware-configuration.nix ];
# boot = {
# kernelPackages = pkgs.linuxPackages_latest;
# };
networking.hostName = "grimmauld-nixos-server";
networking.domain = "grimmauld.de";
services.openssh.enable = true;
system.stateVersion = "23.11";
networking.networkmanager.enable = lib.mkForce false;
# users.users.root.openssh.authorizedKeys.keys = (import ./authorizedKeys.nix);
}