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

@ -19,8 +19,6 @@
swapDevices = [ { device = "/swapfile"; size = 8192; } ];
boot.kernelPackages = pkgs.linuxPackages_hardened;
networking = {
hostName = "alexandria";
firewall = {

View file

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