nixdots/hosts/vbox_nix/default.nix

23 lines
506 B
Nix
Raw Normal View History

2024-03-19 07:30:04 +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
};
2024-02-24 21:44:19 +00:00
networking.hostName = "vboxnix";
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";
}