mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-02-13 20:32:05 +00:00
20 lines
321 B
Nix
20 lines
321 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../base.nix
|
|
];
|
|
|
|
boot.loader = {
|
|
grub = {
|
|
enable = true;
|
|
device = "/dev/sda";
|
|
};
|
|
};
|
|
|
|
networking.hostName = "qemu";
|
|
|
|
time.timeZone = "America/New_York";
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|