diff options
author | Alan Pearce | 2025-02-15 19:14:22 +0100 |
---|---|---|
committer | Alan Pearce | 2025-02-15 19:14:22 +0100 |
commit | 9c11f3ce96f6425d4efcce1089fb362a0b0a00da (patch) | |
tree | f7586656f172195ea5ff5b4862163ad4f2559492 /system/nano.nix | |
parent | c910033fc6cc5032e25772627259a4d4ee3a9a64 (diff) | |
download | nixfiles-9c11f3ce96f6425d4efcce1089fb362a0b0a00da.tar.lz nixfiles-9c11f3ce96f6425d4efcce1089fb362a0b0a00da.tar.zst nixfiles-9c11f3ce96f6425d4efcce1089fb362a0b0a00da.zip |
nano: remove support for BSD disklabels
Diffstat (limited to 'system/nano.nix')
-rw-r--r-- | system/nano.nix | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/system/nano.nix b/system/nano.nix index 5bf5dea1..68ef8a6b 100644 --- a/system/nano.nix +++ b/system/nano.nix @@ -29,19 +29,6 @@ in }; srvos.boot.consoles = [ "ttyS2,1500000" ]; - boot.kernelPackages = pkgs.linuxWithBSDDisklabel; - nixpkgs = { - overlays = [ - (self: super: { - linuxWithBSDDisklabel = super.linuxPackagesFor (super.linux.override { - structuredExtraConfig = with lib.kernel; { - BSD_DISKLABEL = yes; - }; - ignoreConfigErrors = false; - }); - }) - ]; - }; hardware.deviceTree = { enable = true; |