xd1le 2fe2821458 alacritty: cemant and base16-black-metal-immortal colors | 3 vuotta sitten | |
---|---|---|
alacritty | 3 vuotta sitten | |
chromium | 6 vuotta sitten | |
compton | 7 vuotta sitten | |
emacs | 3 vuotta sitten | |
fontconfig | 5 vuotta sitten | |
ghci | 8 vuotta sitten | |
git | 3 vuotta sitten | |
guile | 7 vuotta sitten | |
herbstluftwm | 5 vuotta sitten | |
interception-tools | 4 vuotta sitten | |
iosevka | 3 vuotta sitten | |
latexmk | 7 vuotta sitten | |
mpd | 7 vuotta sitten | |
mpv | 7 vuotta sitten | |
nixos | 3 vuotta sitten | |
pandoc | 6 vuotta sitten | |
polybar | 5 vuotta sitten | |
readline | 7 vuotta sitten | |
stow | 9 vuotta sitten | |
sxhkd | 5 vuotta sitten | |
tridactyl | 5 vuotta sitten | |
vim | 3 vuotta sitten | |
x | 5 vuotta sitten | |
zathura | 7 vuotta sitten | |
zsh | 3 vuotta sitten | |
.gitignore | 7 vuotta sitten | |
bootstrap | 5 vuotta sitten | |
copying | 5 vuotta sitten | |
flake.lock | 3 vuotta sitten | |
flake.nix | 3 vuotta sitten | |
readme.md | 5 vuotta sitten |
Download latest nixos-unstable image from https://nixos.org/channels/nixos-unstable.
Make a bootable usb. For example:
# Obviously run `lsblk -f` first to get the correct 'of' path to your usb.
#
# NOTE: Not using the correct 'of' path could erase your hard drive so be
# very careful to use the right one!
dd if=path/to/image of=/dev/sdb # As root.
Boot into live image and log in as root with empty password (if it doesn't automatically log you in).
Get internet access.
ip a
will bring up a list of network interfaces.
iwlist <interface> scan | less
to see if your wifi is available.
Edit /etc/wpa_supplicant.conf
with your network details.
wpa_supplicant -B -i<interface> -c/etc/wpa_supplicant.conf -Dwext
.
dhclient <interface>
or dhcpcd <interface>
if dhclient
command
doesn't exist.
Partition and format disks.
lsblk -f
lists your devices.
mkfs.ext4 -L nixos <device>
to format a device.
mkswap -L swap <device>
to make a swap partition.
(optional) Activate swap device: swapon <device>
.
Mount target filesystems under /mnt
:
mount /dev/disk/by-label/nixos /mnt
Generate /etc/nixos
configuration files:
nixos-generate-config --root /mnt
Inspect the generated /mnt/etc/configuration.nix
to see if any bootloader
options were put in there to hint on which bootloader options to use.
If using systemd-boot, mount the boot partition under /mnt/boot
and
perform step 8 again to get an updated hardware-configuration.nix
with the
/mnt/boot
filesystem entry.
Backup hardware-configuration.nix
:
cp /mnt/etc/nixos/hardware-configuration.nix \
/mnt/etc/nixos/hardware-configuration.modified.nix
Edit hardware-configuration.modified.nix
to put the correct bootloader
options in it, and also put system.stateVersion
from configuration.nix
into hardware-configuration.modified.nix
.
Copy wpa_supplicant.conf
to target filesystem:
cp /etc/wpa_supplicant.conf /mnt/etc
This allows wpa_supplicant to automatically connect to internet when rebooting into the installed system.
nixos-install -I
nixos-config=https://raw.githubusercontent.com/vyp/dots/master/nixos/minimal.nix
Reboot and login with root and set password for user "u":
passwd u
Login as user and retrieve this repository:
git clone https://vyp@github.com/vyp/dots
./dots/bootstrap
.
sudo nixos-rebuild boot
and reboot (with sudo shutdown now
).