Moved server boot.nix

This commit is contained in:
baduhai 2022-11-29 22:59:56 -03:00
parent 1f3bd17e6f
commit c5ebb0b498
2 changed files with 5 additions and 2 deletions

View file

@ -18,8 +18,6 @@
users.users.user.extraGroups = [ "docker" ]; users.users.user.extraGroups = [ "docker" ];
swapDevices = [ { device = "/swapfile"; size = 8192; } ]; swapDevices = [ { device = "/swapfile"; size = 8192; } ];
boot.kernelPackages = pkgs.linuxPackages_hardened;
networking = { networking = {
hostName = "alexandria"; hostName = "alexandria";

View file

@ -0,0 +1,5 @@
{ config, pkgs, lib, ... }:
{
boot.kernelPackages = pkgs.linuxPackages_hardened;
}