Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | s/install-nixos.sh/install.sh/ | EuAndreh | 2019-06-01 | 1 | -2/+2 |
| | |||||
* | Duplicate Nix files from /etc/nixos/* to /mnt/etc/nixos/ | EuAndreh | 2019-06-01 | 1 | -2/+6 |
| | | | | | | | | | | | | The /etc/nixos/ path is temporary, and vanishes once the computer is rebooted after finishing the installation. However, the Nix files downloaded by install.sh point to /etc/nixos/, and they will be afterwards be symlinked to the files in this git repository. This prevents me from using relative paths like ./hardware-configuration.nix or similar. The duplicate files are there to support building the OS during the installation phase (the nixos-install command) without needing to make it generic for everyday usage. | ||||
* | Use /mnt as installation root | EuAndreh | 2019-06-01 | 1 | -8/+4 |
| | |||||
* | Fix reference to install.sh URL | EuAndreh | 2019-06-01 | 1 | -3/+3 |
| | |||||
* | Add mkpasswd to install.sh nix-shell declaration | EuAndreh | 2019-06-01 | 1 | -1/+1 |
| | | | | | Also don't run install.sh with the --pure flag, as it needs to run commands such as nixos-generate-config. | ||||
* | Add e2fsprogs to install.sh nix-shell declaration | EuAndreh | 2019-06-01 | 1 | -1/+1 |
| | | | | The e2fsprogs derivation includes the mkfs.ext4 program used by install.sh. | ||||
* | Add dosfstools to install.sh nix-shell declaration | EuAndreh | 2019-06-01 | 1 | -1/+1 |
| | | | | The dosfstools derivation includes the mkfs.vfat program used inside install.sh. | ||||
* | Shutdown instead of rebooting after install.sh runs | EuAndreh | 2019-06-01 | 1 | -2/+2 |
| | |||||
* | Add lvm2 to install.sh nix-shell declaration | EuAndreh | 2019-06-01 | 1 | -1/+1 |
| | | | | | The lvm2 derivation includes required binaries such as pvcreate, vgcreate and lvcreate required for configuring logical volumes in the new NixOS laptop's disk. | ||||
* | Add cryptsetup to install.sh nix-shell declaration | EuAndreh | 2019-06-01 | 1 | -1/+1 |
| | |||||
* | Fix off-by-one sector region in last sgdisk command | EuAndreh | 2019-06-01 | 1 | -1/+1 |
| | |||||
* | Add gptfdisk to install.sh nix-shell declaration | EuAndreh | 2019-06-01 | 1 | -1/+1 |
| | | | | The gptfdisk derivation includes the binary for sgdisk program. | ||||
* | Fix server URL where to download public files from | EuAndreh | 2019-06-01 | 1 | -1/+1 |
| | |||||
* | Add reference to partitioning tutorials | EuAndreh | 2019-06-01 | 1 | -0/+3 |
| | |||||
* | Run read with -r flag (linter offense) | EuAndreh | 2019-06-01 | 1 | -2/+2 |
| | | | | | Taken from: https://github.com/koalaman/shellcheck/wiki/SC2162 | ||||
* | Move NixOS public files into public/nixos/ folder | EuAndreh | 2019-06-01 | 1 | -0/+141 |