nixos_config/hosts/alisceon-core/configuration.nix
2025-08-26 14:00:14 +02:00

13 lines
268 B
Nix

{ config, pkgs, ... }:
{
imports =
[ ./hardware-configuration.nix ];
networking.hostName = "alisceon-core";
boot.initrd.enable = true;
boot.loader = {
systemd-boot = {
enable = true;
}; # end loader.systemd-boot
}; # end boot
} # end file