fix bolle

This commit is contained in:
Peder Bergebakken Sundt 2023-03-01 02:21:24 +01:00
parent 82ea71006d
commit fac1c0a7ed
3 changed files with 8 additions and 5 deletions

View File

@ -50,11 +50,6 @@
# TODO: only if x86_64?
services.thermald.enable = true;
# Bootloader
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda"; # TODO: host-specific
boot.loader.grub.useOSProber = true;
# firewall
services.fail2ban.enable = config.services.openssh.enable;
networking.firewall.enable = true; # default

View File

@ -1,5 +1,9 @@
{ config, pkgs, lib, ... }:
{
# Bootloader
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/nvme0n1";
boot.loader.grub.useOSProber = true;
imports = [
./hardware-configuration.nix

View File

@ -1,5 +1,9 @@
{ config, pkgs, lib, ... }:
{
# Bootloader
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.useOSProber = true;
imports = [
./hardware-configuration.nix