mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-18 17:11:39 +01:00
update readme.md
This commit is contained in:
parent
09e6824497
commit
a46a0d6500
2 changed files with 6 additions and 3 deletions
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue