1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-02-12 12:32:05 +00:00
.dotfiles/nixos/hosts/qemu/configuration.nix

26 lines
514 B
Nix
Raw Normal View History

2024-12-18 16:38:29 -05:00
{ ... }:
2024-11-30 21:37:01 -05:00
{
imports = [
./hardware-configuration.nix
2024-12-17 15:50:18 -05:00
../../base.nix
2024-11-30 21:37:01 -05:00
];
boot.loader = {
grub = {
enable = true;
2024-12-18 01:14:25 -05:00
device = "/dev/sda";
2024-11-30 21:37:01 -05:00
};
};
2024-12-17 15:52:21 -05:00
networking.hostName = "qemu";
2024-11-30 21:37:01 -05:00
time.timeZone = "America/New_York";
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "gr928-8x16-thin"; # t || https://adeverteuil.github.io/linux-console-fonts-screenshots/
keyMap = "us";
};
2024-12-17 15:50:18 -05:00
system.stateVersion = "24.11";
2024-11-30 21:37:01 -05:00
}