Go to file
Andreas Zweili 2461d3f062 enable the powersave cpuFreqGovernor on the precision 2021-11-30 19:17:57 +01:00
common add lm_sensors 2021-11-30 19:17:24 +01:00
hardware enable the powersave cpuFreqGovernor on the precision 2021-11-30 19:17:57 +01:00
home-manager display qtiles top bar on the second monitor as well 2021-11-29 20:59:42 +01:00
scripts rename the hardware config 2021-11-29 19:23:52 +01:00
secrets@b8f1d9650a update secrets 2021-11-29 19:24:09 +01:00
.gitignore ignore pycache 2021-11-19 16:29:13 +01:00
.gitmodules add nixos-hardware as a submodule 2021-11-27 17:24:21 +01:00
LICENSE Initial commit 2021-11-15 17:43:04 +01:00
README.md extend the README 2021-11-29 10:55:16 +01:00
version.nix add a version file 2021-11-23 23:09:40 +01:00

README.md

nixos

This repository contains my configuration for my Nixos systems. I don't provide any garantuees that it will work on other systems. In addition some of the scripts required for installation will destroy your data when used.

Base installation

parted /dev/sda -- mklabel gpt
parted /dev/sda -- mkpart ESP fat32 1MiB 512MiB
parted /dev/sda -- set 1 esp on
parted /dev/sda -- mkpart primary 512MiB 100%

cryptsetup luksFormat --type luks1 /dev/sda2
cryptsetup open /dev/sda2 cryptlvm

pvcreate /dev/mapper/cryptlvm
vgcreate MainGroup /dev/mapper/cryptlvm
lvcreate -L 8G MainGroup -n swap
lvcreate -l 100%FREE MainGroup -n root

mkfs.ext4 -L nixos /dev/MainGroup/root
mkswap -L swap /dev/MainGroup/swap
mkfs.fat -F 32 -n BOOT /dev/sda1
  1. sudo scripts/format-drive.sh
  2. Execute one of the following scripts:
    • sudo scripts/link-asus.sh
    • sudo scripts/link-vm.sh
    • sudo scripts/link-precision5530.sh
  3. sudo nixos-install

Non-Nixos System

  1. scripts/add-home-manager-channel.sh
  2. scripts/install-home-manager.sh