48 lines
773 B
Nix
48 lines
773 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-nixvm";
|
|
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
|
|
];
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
wget
|
|
git
|
|
curl
|
|
zsh
|
|
];
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|
|
|