nix-config/hosts/qemu/default.nix

45 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2025-04-04 09:45:57 +02:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
{
2025-04-06 18:29:11 +02:00
imports = [
2025-04-04 11:14:33 +02:00
../../modules/system.nix
../../modules/nix-settings.nix
../../modules/vpn.nix
../../modules/fonts.nix
../../modules/firewall.nix
../../modules/localisation.nix
../../modules/openssh.nix
../../modules/pipewire.nix
../../modules/podman.nix
../../modules/services.nix
../../modules/regreet/regreet.nix
../../modules/plymouth.nix
../../modules/file_managers/spacefm.nix
2025-04-06 18:29:11 +02:00
# Include the results of the hardware scan.
2025-04-04 11:14:33 +02:00
./hardware-configuration.nix
2025-04-04 09:45:57 +02:00
];
2025-04-06 18:29:11 +02:00
programs.geary.enable = true;
2025-04-06 18:24:18 +02:00
2025-04-06 18:29:11 +02:00
boot.loader = {
grub = {
enable = true;
device = "/dev/sda";
};
2025-04-04 11:14:33 +02:00
};
2025-04-06 18:29:11 +02:00
networking.hostName = "nix-qemu"; # Define your hostname.
2025-04-04 11:14:33 +02:00
2025-04-06 18:48:14 +02:00
hardware.graphics.enable = true;
2025-04-04 11:14:33 +02:00
2025-04-06 18:29:11 +02:00
system.stateVersion = "25.11"; # Did you read the comment?
2025-04-04 09:45:57 +02:00
}
2025-04-05 15:13:04 +02:00
2025-04-06 18:29:11 +02:00