1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-02-13 04:32:05 +00:00
.dotfiles/nixos/hosts/qemu/configuration.nix
roxwize c38f040574
~
Signed-off-by: roxwize <rae@roxwize.xyz>
2025-01-24 16:08:11 -05:00

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";
}