-
Download iso:
# Download nixos-stable wget -O nixos.iso https://channels.nixos.org/nixos-22.11/latest-nixos-gnome-x86_64-linux.iso # Write iso to a flash drive cp nixos.iso /dev/sdX
-
Boot into the installer
2.1. Connect to Network
2.2. Open terminal
-
Switch to root user:
sudo -i
-
Partitioning:
I am using nvme disk (/dev/nvme0n1) with GPT partition label:
# Final result: nvme0n1 259:0 0 210,0G 0 disk ├─nvme0n1p1 259:1 0 2G 0 part └─nvme0n1p2 259:2 0 200G 0 part ├─vg0-root 254:0 0 30G 0 lvm ├─vg0-home 254:1 0 30G 0 lvm ├─vg0-docker 254:1 0 20G 0 lvm └─vg0-swap 254:4 0 10G 0 lvm
4.1. Create partitions
# cfdisk (gpt + 2 part: 10Gb and all left space) / write (type yes) quit: cfdisk /dev/nvme0n1 parted /dev/nvme0n1 name 1 EFI parted /dev/nvme0n1 name 2 SYSTEM # or only parted: parted /dev/nvme0n1 mklabel gpt parted /dev/nvme0n1 -- mkpart EFI fat32 1MB 10GB parted /dev/nvme0n1 -- mkpart SYSTEM 10GB 100% # require flag for EFI boot partition: parted /dev/nvme0n1 -- set 1 esp on
4.2. Create LVM:
pvcreate /dev/nvme0n1p2 vgcreate vg0 /dev/nvme0n1p2 lvcreate -L30G -n root vg0 lvcreate -L30G -n home vg0 lvcreate -L20G -n docker vg0 lvcreate -L10G -n swap vg0
4.3. Create filesystem:
mkfs.ext4 -L root /dev/vg0/root mkfs.ext4 -L home /dev/vg0/home mkfs.ext4 -L docker /dev/vg0/docker mkswap -L swap /dev/vg0/swap
4.4. Mount:
mkdir -p /mnt/{boot,home,var} mkdir -p /mnt/var/lib/docker mkdir -p /mnt/boot/efi mount /dev/disk/by-label/root /mnt mount /dev/disk/by-label/EFI /mnt/boot/efi mount /dev/disk/by-label/home /mnt/home mount /dev/disk/by-label/docker /mnt/var/lib/docker swapon /dev/disk/by-label/swap # See final result: lsblk
-
Enable flakes:
nix-shell -p nixFlakes
-
Install nixos from flake:
# laptop: nixos-install --flake github:MOIS3Y/nixos-configurations#honor-wlr-w09 --impure # workstation: nixos-install --flake github:MOIS3Y/nixos-configurations#msi-z390-a-pro --impure
-
Fix GRUB (I have this trouble) after install:
mkdir /mnt/boot/efi/EFI/boot cp /mnt/boot/efi/EFI/NixOS-boot-efi/grubx.efi /mnt/boot/efi/EFI/boot/bootx.efi
-
Umount:
umount /mnt/boot/efi umount /mnt/var/lib/docker umount /mnt/home umount /mnt swapoff --all
-
Reboot:
reboot # remove flash drive
-
Notifications
You must be signed in to change notification settings - Fork 0
MOIS3Y/nixos-configurations
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
My NixOS configurations
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published