nixos-config/hosts/ni
2024-01-04 12:04:31 +08:00
..
config/nixpkgs hosts/ni: remove unnecessary nixpkgs config 2023-12-17 20:15:58 +08:00
files hosts: add Wireguard services to related peers 2023-01-17 21:34:54 +08:00
modules hosts/ni/setups/desktop: configure i18n setup per-workflow 2024-01-04 12:04:31 +08:00
secrets hosts: add Wireguard services to related peers 2023-01-17 21:34:54 +08:00
default.nix hosts/ni: enable Nix channels 2023-12-29 18:49:45 +08:00
disko.nix hosts/ni: update disko config 2023-12-10 11:25:36 +08:00
hardware-configuration.nix hosts/ni: switch wireless setup to default 2023-12-23 18:34:12 +08:00
README.adoc docs: update 2022-11-29 15:58:33 +08:00

My desktop workstation. Pretty nice, pretty handy, it is your basic desktop NixOS installation.

I know partitioning is not your favorite part so heres one way to prepare the laptop with this config.

# Preparing the partitions.
parted /dev/sda -- mklabel gpt
parted /dev/sda -- mkpart primary 512MiB -4GB
parted /dev/sda -- mkpart primary linux-swap -4GB 100%
parted /dev/sda -- mkpart ESP fat32 1MiB 512MiB
parted /dev/sda -- set 3 esp on

# Setting up the filesystems.
mkfs.ext4 -L nixos /dev/sda1
mkswap -L swap /dev/sda2
mkfs.fat -F 32 -n boot /dev/sda3

# Mount the partitions before installation.
mount /dev/disk/by-label/nixos /mnt
mkdir -p /mnt/boot
mount /dev/disk/by-label/boot /mnt/boot
swapon /dev/disk/by-label/swap