mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-14 04:07:18 +00:00
23 lines
506 B
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";
|
|
}
|