1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-01-31 15:03:37 +00:00
.dotfiles/nixos/hosts/qemu/configuration.nix

37 lines
988 B
Nix
Raw Normal View History

2024-12-01 02:37:01 +00:00
{ config, lib, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
2024-12-17 20:50:18 +00:00
../../base.nix
2024-12-01 03:44:05 +00:00
../../home.nix
2024-12-01 02:37:01 +00:00
];
boot.loader = {
# efi.efiSysMountPoint = "/boot/efi";
grub = {
enable = true;
device = "/dev/sda"; # or "nodev" for efi only
# efiSupport = true;
# efiInstallAsRemovable = true;
};
};
2024-12-17 20:52:21 +00:00
networking.hostName = "qemu";
2024-12-01 02:37:01 +00: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";
# useXkbConfig = true; # use xkb.options in tty.
};
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
2024-12-17 20:50:18 +00:00
system.stateVersion = "24.11";
2024-12-01 02:37:01 +00:00
}