This is my guide that I synthesized from different sources. Mainly:
Installed it on /dev/sda. First, create an empty MBR partition table.
This is my guide that I synthesized from different sources. Mainly:
Installed it on /dev/sda. First, create an empty MBR partition table.
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="x-ua-compatible" content="ie=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta http-equiv="X-UA-Compatible" content="ie-edge" /> | |
<title>Document</title> | |
<link rel="stylesheet" href="css/main.css" /> |
function Autobind(_: any, __: any, descriptor: PropertyDescriptor): PropertyDescriptor { | |
const oldMethod = descriptor.value; | |
const newMethod: PropertyDescriptor = { | |
configurable: true, | |
enumerable: false, | |
get() { | |
const boundFn = oldMethod.bind(this); | |
return boundFn; | |
}, | |
}; |
#{ config, pkgs ? import (fetchTarball https://github.com/NixOS/nixpkgs/archive/7ed3d2df76cd1f637c6163858ac0e1db9cdf7b00.tar.gz) {}, ... }: | |
{ config, pkgs, ... }: | |
{ | |
imports = | |
[ # Include the results of the hardware scan. | |
./hardware-configuration.nix | |
# ./systemPackages.nix | |
]; |