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
```
NAME MOUNTPOINT COMMENT
tmpfs / # root on tmpfn
sda
├─sda1 /boot
├─sda2 [SWAP]
└─sda3 # btrfs
├─root /
├─lib /var/lib
├─log /var/log
└─store /nix/store
└─nix /nix
```
### falkenstein-1

View file

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