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

45 lines
786 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;
};
users.users.poslop = {
isNormalUser = true;
extraGroups = [ "wheel" ];
packages = with pkgs; [
tree
];
};
services.spice-vdagentd.enable = true;
services.qemuGuest.enable = true;
system.stateVersion = "24.11";
}