Go to file
Andreas Zweili 846a3bb459 Limit the attic processes when pushing builds 2024-04-18 20:18:11 +02:00
home-manager Add attic-client to work-wsl 2024-04-18 08:34:24 +02:00
lib Move attic module import 2024-04-17 21:57:11 +02:00
modules Increase haproxy timeouts for attic 2024-04-18 19:52:57 +02:00
scripts Limit the attic processes when pushing builds 2024-04-18 20:18:11 +02:00
scrts Add module for atticd 2024-04-15 22:37:43 +02:00
systems Enable postgres backups on management 2024-04-16 19:30:20 +02:00
.editorconfig Extend editorconfig 2023-12-04 13:01:55 +01:00
.envrc Make the management scripts easier to use 2023-12-04 13:01:55 +01:00
.gitignore Ignore flycheck files 2023-11-08 20:02:10 +01:00
.gitmodules Add copilot 2023-12-13 14:56:21 +01:00
LICENSE Initial commit 2021-11-15 17:43:04 +01:00
README.md Add no-channel-copy option to install command 2024-03-04 18:22:15 +01:00
flake.lock Update flake 2024-04-17 22:15:15 +02:00
flake.nix Add attic and update flake 2024-04-15 09:08:30 +02:00
setup-shell.nix Switch to nixfmt-rfc-style 2024-02-02 13:45:05 +01:00
shell.nix Make the test-build script easier to work with 2024-04-08 21:33:26 +02: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.

Installation

  1. For Raspis it's the easiest if you prepare the SD card/disk on another system. For a PC you can just boot the installation ISO directly.
  2. For both devices you can format the disk/card with the following script sudo ./scripts/format-disk.sh. Make sure to edit it beforehand, to point it to the correct disk.
  3. Next install the system with sudo nixos-install --no-root-passwd --root /mnt/nixos --impure --flake .#SYSTEMNAME --no-channel-copy
  4. Rename the partitions with the script sudo ./scripts/rename-partitions.sh. With this script as well. Check that you're pointing to the correct disk.

When everything is finished you can reboot the system and remove the USB stick. You have now a fully encrypted NixOS system.

Additional script

  • If you only want to prepare an SD card with an UEFI partition for a Raspberry Pi 4 you can use the script sudo ./scripts/create-uefi.sh

Update remote systems

Simply run the script scripts/remote_switch.sh and it will iterate over all defined systems. With the option -r the systems will reboot as well.

Non-Nixos System

  1. scripts/install-home-manager.sh

Development

Options template

{ config, lib, pkgs, ... }:
let
  cfg = config.programs.NAME;
in
{
  options = {
    programs.NAME.enable = lib.mkEnableOption "DESCRIPTION";
  };

  config = lib.mkIf cfg.enable {
  };
}