Files
rice-flakes/hosts/nixos-vm2/configuration.nix
2025-05-01 16:01:01 -05:00

38 lines
654 B
Nix

{ config, lib, pkgs, ... }:
{
nix.settings = {
experimental-features = "nix-command flakes";
};
imports =
[
./hardware-configuration.nix
../../modules/core
];
programs.hyprland.enable = true;
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
networking.hostName = "poslop-nixvm2";
networking.networkmanager.enable = true;
time.timeZone = "America/Chicago";
services.printing.enable = true;
services.pipewire = {
enable = true;
pulse.enable = true;
};
services.spice-vdagentd.enable = true;
services.qemuGuest.enable = true;
system.stateVersion = "24.11";
}