nixdots/hosts/vbox_nix/default.nix

23 lines
506 B
Nix

{ lib, pkgs, ...}:
{
imports = [ ./hardware-configuration.nix ];
nix.settings = {
max-jobs = 6;
cores = 6;
};
security.sudo.package = pkgs.sudo.override { withInsults = true; };
security.polkit.enable = true;
services = {
udisks2.enable = true;
};
networking.hostName = "vboxnix";
# 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";
}