diff --git a/nixos/hosts/Tibo-NixDesk/default.nix b/nixos/hosts/Tibo-NixDesk/default.nix index 5eb7234..3890a88 100644 --- a/nixos/hosts/Tibo-NixDesk/default.nix +++ b/nixos/hosts/Tibo-NixDesk/default.nix @@ -35,11 +35,15 @@ virtualisation.virtualbox.enable = true; }; - boot.loader = { - systemd-boot.enable = true; - efi = { - canTouchEfiVariables = true; - efiSysMountPoint = "/boot/efi"; + boot = { + kernelPackages = pkgs.linuxPackages_hardened; + + loader = { + systemd-boot.enable = true; + efi = { + canTouchEfiVariables = true; + efiSysMountPoint = "/boot/efi"; + }; }; }; diff --git a/nixos/hosts/Tibo-NixFat/default.nix b/nixos/hosts/Tibo-NixFat/default.nix index c05381b..9cc516d 100644 --- a/nixos/hosts/Tibo-NixFat/default.nix +++ b/nixos/hosts/Tibo-NixFat/default.nix @@ -47,6 +47,8 @@ }; }; + kernelPackages = pkgs.linuxPackages_hardened; + # Use the systemd-boot EFI boot loader.] loader = { systemd-boot.enable = true; @@ -66,6 +68,7 @@ ]; programs = { + steam.enable = true; zsh.enable = true; };