Files
nix-config/hosts/frodo/default.nix
Armel van Ravels 00a8168ef5 add den pattern
2026-08-14 15:08:14 +02:00

20 lines
315 B
Nix

{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
];
features.modules = {
core.enable = true;
};
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
boot.loader.grub.useOSProber = true;
networking.hostName = "frodo";
system.stateVersion = "25.11";
}