20 lines
315 B
Nix
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";
|
|
}
|