Files
rice-flakes/hosts/nixos-vm2/configuration.nix
2025-04-30 15:58:49 -05:00

52 lines
862 B
Nix

{ config, lib, pkgs, ... }:
{
nix.settings = {
experimental-features = "nix-command flakes";
};
imports =
[
./hardware-configuration.nix
];
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;
environment.systemPackages = with pkgs; [
kitty
vim
wget
git
curl
zsh
];
system.stateVersion = "24.11";
}