nixdots/hosts/vbox_nix/default.nix

31 lines
621 B
Nix
Raw Normal View History

2024-03-21 20:47:25 +00:00
{ lib, pkgs, ... }:
2024-02-24 21:24:22 +00:00
{
imports = [ ./hardware-configuration.nix ];
2024-03-19 07:30:04 +00:00
nix.settings = {
max-jobs = 6;
cores = 6;
};
security.sudo.package = pkgs.sudo.override { withInsults = true; };
security.polkit.enable = true;
services = {
udisks2.enable = true;
2024-02-24 21:24:22 +00:00
};
# NixOS release from which this machine was first installed.
# (for stateful data, like file locations and db versions)
# Leave this alone!
system.stateVersion = lib.mkForce "23.11";
2024-03-21 20:47:25 +00:00
myOptions = {
system = {
hostname = "vboxnix";
username = "itsdrike";
};
device = {
cpu.type = "vm-amd";
};
};
2024-02-24 21:24:22 +00:00
}