Coder Social home page Coder Social logo

nixfiles's Introduction

Nixfiles

My infrastructure as code.

Useful snippets

SSH in without polluting known_hosts

ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=false <DESTINATION>

Install a Host

Setup

# Regular disk
export DISK="/dev/sda"
export ROOTFS="${DISK}1"

# NVMe disk
export DISK="/dev/nvme0n1"
export ROOTFS="${DISK}p1"
export UEFIFS="${DISK}p2"

BIOS

parted $DISK -- mklabel msdos
parted $DISK -- mkpart primary 0% 100%
mkfs.ext4 -L nixos $ROOTFS
sleep 2
mount /dev/disk/by-label/nixos /mnt

UEFI

  • Partition 1 is the rootfs
  • Partition 2 is the uefifs
  • I don't want SWAP
parted $DISK -- mklabel gpt
parted $DISK -- mkpart primary 512MB 100%
parted $DISK -- mkpart ESP fat32 1MB 512MB
parted $DISK -- set 2 esp on
mkfs.ext4 -L nixos $ROOTFS
mkfs.fat -F 32 -n boot $UEFIFS
sleep 2
mount /dev/disk/by-label/nixos /mnt
mkdir -p /mnt/boot
mount /dev/disk/by-label/boot /mnt/boot

Install System

nixos-generate-config --root /mnt
nixos-install --no-root-passwd --verbose --flake "git+https://codeberg.org/duponin/nixfiles#<HOSTNAME>" && reboot

Fix a Broken Install

  1. reboot on ISO
  2. become super user
  3. mount /dev/disk/by-label/nixos /mnt && nixos-install --no-root-passwd --verbose --flake "git+http://codeberg.org/duponin/nixfiles#<HOSTNAME>"
  4. reboot

nixfiles's People

Contributors

fungalcofe avatar

Watchers

James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.