aboutsummaryrefslogtreecommitdiff
path: root/modules/nixos/hardware/baremetal.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-11-02 13:36:54 -0800
committerFranck Cuny <franck@fcuny.net>2025-11-02 13:36:54 -0800
commit74aefd109ab4df4b41699c7245a995f8fde498c1 (patch)
treee65a6bcbda87f23e1797db5b96c3a5259ede8d74 /modules/nixos/hardware/baremetal.nix
parentsimplify configuration for darwin (diff)
downloadinfra-74aefd109ab4df4b41699c7245a995f8fde498c1.tar.gz
cleanup nixos related configurations
Diffstat (limited to 'modules/nixos/hardware/baremetal.nix')
-rw-r--r--modules/nixos/hardware/baremetal.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/modules/nixos/hardware/baremetal.nix b/modules/nixos/hardware/baremetal.nix
deleted file mode 100644
index 884fa00..0000000
--- a/modules/nixos/hardware/baremetal.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ lib, config, ... }:
-let
- cfg = config.my.modules.hardware.baremetal;
-in
-{
- options.my.modules.hardware.baremetal = {
- enable = lib.mkEnableOption "Baremetal hardware defaults";
- };
-
- config = lib.mkIf cfg.enable {
- services.fwupd.enable = true;
- hardware.enableRedistributableFirmware = true;
-
- boot.loader.efi.canTouchEfiVariables = true;
- boot.loader.systemd-boot.enable = true;
- };
-}