update readme.md

This commit is contained in:
Rouven Seifert 2023-05-30 21:25:52 +02:00
parent 09e6824497
commit a46a0d6500
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
2 changed files with 6 additions and 3 deletions

View file

@ -41,14 +41,14 @@ Old Intel Nuc that I got from @LeBogoo. Running a few personal services.
#### Disk layout #### Disk layout
``` ```
NAME MOUNTPOINT COMMENT NAME MOUNTPOINT COMMENT
tmpfs / # root on tmpfn
sda sda
├─sda1 /boot ├─sda1 /boot
├─sda2 [SWAP] ├─sda2 [SWAP]
└─sda3 # btrfs └─sda3 # btrfs
├─root /
├─lib /var/lib ├─lib /var/lib
├─log /var/log ├─log /var/log
└─store /nix/store └─nix /nix
``` ```
### falkenstein-1 ### falkenstein-1

View file

@ -1,4 +1,4 @@
{ config, modulesPath, ... }: { pkgs, config, modulesPath, ... }:
{ {
imports = [ imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix" "${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
@ -10,6 +10,9 @@
keyMap = "dvorak"; keyMap = "dvorak";
}; };
programs.git.enable = true; programs.git.enable = true;
environment.systemPackages = with pkgs; [
helix
];
# in case we need to rescue a zfs machine # in case we need to rescue a zfs machine
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages; boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;