aboutsummaryrefslogtreecommitdiff
path: root/nixos/flake/system/boot.nix.org
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/flake/system/boot.nix.org')
-rw-r--r--nixos/flake/system/boot.nix.org11
1 files changed, 0 insertions, 11 deletions
diff --git a/nixos/flake/system/boot.nix.org b/nixos/flake/system/boot.nix.org
deleted file mode 100644
index fe98542..0000000
--- a/nixos/flake/system/boot.nix.org
+++ /dev/null
@@ -1,11 +0,0 @@
-#+title: Boot Configuration
-
-Enable =systemd-boot= as my boot loader.
-#+begin_src nix :tangle ~/.flake/system/boot.nix :mkdirp yes
-{ config, lib, pkgs, ... }:
-
-{
- boot.loader.systemd-boot.enable = true;
- boot.loader.efi.canTouchEfiVariables = true;
-}
-#+end_src