Add optional system modules

This commit is contained in:
ItsDrike 2024-03-19 08:30:04 +01:00
parent 58d9a3c908
commit ae1c7b257e
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
6 changed files with 64 additions and 8 deletions

View file

@ -1,11 +1,16 @@
{lib, ...}:
{ lib, pkgs, ...}:
{
imports = [ ./hardware-configuration.nix ];
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
timeout = 3;
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";